Skip to content

Commit

Permalink
fix: fixes dependabot alerts by upgrading fastify to 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ecktoteckto authored Nov 5, 2024
1 parent 8d19019 commit b84ebe1
Show file tree
Hide file tree
Showing 11 changed files with 2,892 additions and 7,162 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ jobs:
- name: Tests
run: |
docker-compose -f ./docker/compose.yml up -d
docker compose -f ./docker/compose.yml up -d
npm run test
24 changes: 24 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import tsParser from "@typescript-eslint/parser";
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

export default [
...compat.extends("plugin:@typescript-eslint/recommended", "plugin:prettier/recommended"),
{
languageOptions: {
parser: tsParser,
ecmaVersion: 2022,
sourceType: "module",
},
},
];
Loading

0 comments on commit b84ebe1

Please sign in to comment.