forked from webkom/lego-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
70 lines (70 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/**
* TODO: Enable commented recommended rules.
*/
module.exports = {
env: {
browser: true,
es2021: true,
jest: true,
},
extends: [
'eslint:recommended',
//'plugin:cypress/recommended',
'plugin:flowtype/recommended',
'plugin:import/errors',
'plugin:import/warnings',
'plugin:jest/style',
//'plugin:jsx-a11y/recommended',
//'plugin:promise/recommended',
'plugin:react/recommended',
'plugin:react-app/recommended',
'plugin:react-hooks/recommended',
//'plugin:react-redux/recommended',
'react-app',
'react-app/jest',
'prettier',
'prettier/flowtype',
'prettier/react',
],
globals: {
log: true,
expect: true,
jest: true,
__DEV__: true,
__CLIENT__: true,
cypress: true,
},
parser: '@babel/eslint-parser',
parserOptions: {
sourceType: 'module',
babelOptions: {
configFile: './.babelrc',
},
},
plugins: [
'cypress',
'flowtype',
'import',
'jsx-a11y',
'promise',
'react',
'react-hooks',
'react-redux',
],
rules: {
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'react-app/react/react-in-jsx-scope': 'off',
},
settings: {
'import/resolver': {
webpack: {
config: './config/webpack.client.js',
},
},
react: {
version: 'detect',
flowVersion: '0.131.0',
},
},
};