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 22584d8 commit ead1b88Copy full SHA for ead1b88
.eslintrc.js
@@ -2,7 +2,7 @@ module.exports = {
2
parser: '@typescript-eslint/parser',
3
extends: [
4
'eslint:recommended',
5
- '@typescript-eslint/recommended',
+ 'plugin:@typescript-eslint/recommended',
6
'plugin:react/recommended',
7
'plugin:react-hooks/recommended',
8
],
@@ -20,13 +20,13 @@ module.exports = {
20
},
21
22
rules: {
23
- '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
+ '@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
24
'@typescript-eslint/explicit-function-return-type': 'off',
25
'@typescript-eslint/explicit-module-boundary-types': 'off',
26
- '@typescript-eslint/no-explicit-any': 'warn',
+ '@typescript-eslint/no-explicit-any': 'off',
27
'react/react-in-jsx-scope': 'off',
28
'react/prop-types': 'off',
29
- 'react-hooks/rules-of-hooks': 'error',
+ 'react-hooks/rules-of-hooks': 'warn',
30
'react-hooks/exhaustive-deps': 'warn',
31
32
env: {
0 commit comments