Skip to content

Commit 5087b15

Browse files
committed
chore: ignore eslint from tsc
1 parent a6ccfd3 commit 5087b15

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

eslint.config.mts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// @ts-ignore
12
import js from "@eslint/js";
23
import globals from "globals";
34
import tseslint from "typescript-eslint";
@@ -10,5 +11,5 @@ export default defineConfig([
1011
extends: ["js/recommended"],
1112
languageOptions: { globals: globals.browser },
1213
},
13-
tseslint.configs.recommended, // @ts-ignore
14+
tseslint.configs.recommended,
1415
]);

tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"exclude": ["eslint.config.mts"],
23
// Visit https://aka.ms/tsconfig to read more about this file
34
"compilerOptions": {
45
// File Layout

0 commit comments

Comments
 (0)