Skip to content

Commit b84ebe1

Browse files
authored
fix: fixes dependabot alerts by upgrading fastify to 5.1.0
1 parent 8d19019 commit b84ebe1

File tree

11 files changed

+2892
-7162
lines changed

11 files changed

+2892
-7162
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ jobs:
6060
6161
- name: Tests
6262
run: |
63-
docker-compose -f ./docker/compose.yml up -d
63+
docker compose -f ./docker/compose.yml up -d
6464
npm run test

eslint.config.mjs

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import tsParser from "@typescript-eslint/parser";
2+
import path from "node:path";
3+
import { fileURLToPath } from "node:url";
4+
import js from "@eslint/js";
5+
import { FlatCompat } from "@eslint/eslintrc";
6+
7+
const __filename = fileURLToPath(import.meta.url);
8+
const __dirname = path.dirname(__filename);
9+
const compat = new FlatCompat({
10+
baseDirectory: __dirname,
11+
recommendedConfig: js.configs.recommended,
12+
allConfig: js.configs.all
13+
});
14+
15+
export default [
16+
...compat.extends("plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"),
17+
{
18+
languageOptions: {
19+
parser: tsParser,
20+
ecmaVersion: 2022,
21+
sourceType: "module",
22+
},
23+
},
24+
];

0 commit comments

Comments
 (0)