We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6eaae0 commit b6583d1Copy full SHA for b6583d1
eslint.config.ts
@@ -56,6 +56,7 @@ export default pluginTypeScriptESLint.config(
56
},
57
rules: {
58
eqeqeq: 'error',
59
+ 'no-unused-vars': 'off',
60
'no-underscore-dangle': 'warn',
61
'no-case-declarations': 'off',
62
'no-trailing-spaces': 'error',
@@ -85,6 +86,14 @@ export default pluginTypeScriptESLint.config(
85
86
'jsx-a11y/no-noninteractive-element-interactions': 0,
87
'jsx-a11y/click-events-have-key-events': 0,
88
'jsx-a11y/no-static-element-interactions': 0,
89
+ '@typescript-eslint/no-unused-vars': [
90
+ 'error',
91
+ {
92
+ argsIgnorePattern: '^_',
93
+ varsIgnorePattern: '^_',
94
+ caughtErrorsIgnorePattern: '^_',
95
+ },
96
+ ],
97
'@typescript-eslint/no-explicit-any': 'off',
98
99
0 commit comments