33 lines
841 B
JavaScript
33 lines
841 B
JavaScript
|
module.exports = {
|
||
|
parser: '@typescript-eslint/parser',
|
||
|
extends: [
|
||
|
'plugin:react/recommended',
|
||
|
'plugin:@typescript-eslint/recommended',
|
||
|
'prettier/@typescript-eslint',
|
||
|
'plugin:prettier/recommended',
|
||
|
],
|
||
|
plugins: ['react-hooks'],
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2018,
|
||
|
sourceType: 'module',
|
||
|
ecmaFeatures: {
|
||
|
jsx: true,
|
||
|
},
|
||
|
},
|
||
|
rules: {
|
||
|
'react-hooks/rules-of-hooks': 'error',
|
||
|
'react-hooks/exhaustive-deps': 'warn',
|
||
|
'react/prop-types': 'off',
|
||
|
'@typescript-eslint/camelcase': 'off',
|
||
|
'@typescript-eslint/no-var-requires': 'off',
|
||
|
'@typescript-eslint/no-empty-function': 'off',
|
||
|
'@typescript-eslint/no-explicit-any': 'off',
|
||
|
'@typescript-eslint/no-unused-vars': ['error', { ignoreRestSiblings: true }],
|
||
|
},
|
||
|
settings: {
|
||
|
react: {
|
||
|
version: 'detect',
|
||
|
},
|
||
|
},
|
||
|
}
|