forked from webkom/lego-webapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
106 lines (106 loc) · 2.35 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/**
* TODO: Enable commented recommended rules.
*/
module.exports = {
env: {
browser: true,
es2022: true,
jest: true,
},
extends: [
'plugin:@typescript-eslint/recommended',
//'plugin:cypress/recommended',
'plugin:import/recommended',
//'plugin:jsx-a11y/recommended',
//'plugin:promise/recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
//'plugin:react-redux/recommended',
'react-app/jest',
'prettier',
],
globals: {
log: true,
expect: true,
jest: true,
__DEV__: true,
__CLIENT__: true,
cypress: true,
},
parser: '@typescript-eslint/parser',
parserOptions: {
sourceType: 'module',
babelOptions: {
configFile: './babel.config.js',
},
},
plugins: [
'cypress',
'import',
'jsx-a11y',
'promise',
'react',
'@typescript-eslint',
'react-hooks',
'react-redux',
],
ignorePatterns: ['mazemap/mazemap.min.*', '**/vendor/*.js'],
rules: {
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-duplicates': 'error',
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
'react-app/react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
'jest/valid-describe': 'off', // valid-describe was replaced by valid-describe-callback, but still needs its rule ...
'jest/valid-describe-callback': 'error',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/consistent-type-imports': 'error',
'import/order': [
'error',
{
groups: [
'builtin',
'external',
'internal',
'parent',
'sibling',
'index',
'type',
],
pathGroups: [
{
pattern: 'app/**',
group: 'internal',
},
],
alphabetize: {
order: 'asc',
},
},
],
},
overrides: [
{
files: ['*.js', '*.jsx', '*.ts', '*.tsx'],
},
],
settings: {
'import/resolver': {
node: {
extensions: ['.js', '.jsx', '.ts', '.tsx'],
},
webpack: {
config: './config/webpack.client.js',
},
},
react: {
version: 'detect',
},
jest: {
version: require('jest/package.json').version,
},
},
};