-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
51 lines (51 loc) · 1.31 KB
/
.eslintrc.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.eslint.json',
tsconfigRootDir: __dirname,
},
extends: ['eslint:recommended', 'plugin:react/recommended', 'plugin:storybook/recommended', 'prettier'],
plugins: ['react', '@typescript-eslint', 'react-hooks', 'jsx-a11y'],
rules: {
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react/react-in-jsx-scope': 'off',
'comma-dangle': 'off',
'react/display-name': 'off',
'no-empty-function': 'off',
'@typescript-eslint/no-empty-function': ['off'],
'@typescript-eslint/no-unused-vars': [
'error',
{
argsIgnorePattern: '^_',
},
],
'storybook/prefer-pascal-case': 'off',
'react-hooks/exhaustive-deps': 'off',
},
overrides: [
{
files: ['*.ts', '*.tsx'],
rules: {
'no-undef': 'off',
'react/no-unknown-property': 0,
'@typescript-eslint/no-var-requires': 'off',
'no-unused-vars': 'off',
'react/prop-types': 'off',
semi: ['error', 'always'],
},
},
],
ignorePatterns: ['**/dist/**/*', '.eslintrc.js'],
settings: {
'import/resolver': {
typescript: {},
},
},
};