Skip to content

Commit 5a41bdf

Browse files
chore: update eslint configuration
1 parent a1295db commit 5a41bdf

File tree

7 files changed

+443
-1290
lines changed

7 files changed

+443
-1290
lines changed

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 11 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import eslint from '@eslint/js';
2+
import tseslint from 'typescript-eslint';
3+
4+
export default tseslint.config(
5+
eslint.configs.recommended,
6+
tseslint.configs.recommended,
7+
{
8+
rules: {
9+
"@typescript-eslint/no-explicit-any": "off",
10+
},
11+
ignores: ["node_modules", "lib"]
12+
},
13+
);

0 commit comments

Comments
 (0)