Skip to content

Commit 4e74590

Browse files
committed
chore: update deps
1 parent d31fbdf commit 4e74590

File tree

3 files changed

+181
-163
lines changed

3 files changed

+181
-163
lines changed

eslint.config.mjs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
import eslint from "@eslint/js";
2+
import { globalIgnores } from "eslint/config";
23
import prettierRecommended from "eslint-plugin-prettier/recommended";
34
import tseslint from "typescript-eslint";
45

5-
export default [
6+
export default tseslint.config(
7+
globalIgnores(["dist/"]),
68
eslint.configs.recommended,
7-
...tseslint.configs.strictTypeChecked,
8-
...tseslint.configs.stylisticTypeChecked,
9+
tseslint.configs.strictTypeChecked,
10+
tseslint.configs.stylisticTypeChecked,
911
prettierRecommended,
1012
{
1113
linterOptions: {
@@ -60,4 +62,4 @@ export default [
6062
"@typescript-eslint/no-import-type-side-effects": "error",
6163
},
6264
},
63-
];
65+
);

0 commit comments

Comments
 (0)