-
Notifications
You must be signed in to change notification settings - Fork 23
/
.eslintrc.js
46 lines (46 loc) · 1.08 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
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: ['eslint:recommended', 'plugin:react/recommended'],
parser: '@babel/eslint-parser',
parserOptions: {
ecmaFeatures: {
jsx: true,
globalReturn: false,
},
ecmaVersion: 13,
sourceType: 'module',
allowImportExportEverywhere: false,
babelOptions: {
configFile: './babel.config.js',
},
},
settings: {
react: {
version: 'detect',
},
'import/resolver': {
webpack: {
config: `${__dirname}/webpack.config.js`,
},
},
},
plugins: ['node', 'react', 'react-hooks'],
rules: {
'arrow-body-style': 0,
'no-underscore-dangle': 0,
'node/no-missing-require': 'error',
'import/prefer-default-export': 0,
'import/named': 0,
'import/no-extraneous-dependencies': 0,
'react/jsx-filename-extension': 0,
'react/jsx-props-no-spreading': 0,
'react-hooks/rules-of-hooks': 'error',
'react-hooks/exhaustive-deps': 'warn',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
},
};