-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
56 lines (56 loc) · 1.53 KB
/
.eslintrc.cjs
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
module.exports = {
extends: [
'@wolox/eslint-config',
'@wolox/eslint-config-react',
'@wolox/eslint-config-typescript',
'plugin:testing-library/react',
'plugin:import/typescript'
],
rules: {
complexity: 'off',
'import/order': ['error', { 'newlines-between': 'always' }],
'no-nested-ternary': 'off',
'no-magic-numbers': 'off',
'new-cap': 'off',
'react/jsx-filename-extension': [
1,
{ extensions: ['.js', '.jsx', '.ts', '.tsx'] }
]
},
settings: {
react: {
version: 'detect'
},
'import/ignore': ['node_modules'],
'import/resolver': {
typescript: {},
node: {
paths: ['./', 'src', 'tests'],
settings: {
'import/resolver': {
node: {
paths: ['src'],
alias: {
map: [
['@', './src/'],
['@components', './src/components'],
['@config', './src/config'],
['@constants', './src/constants'],
['@interfaces', './src/interfaces'],
['@sass', './src/sass'],
['@screens', './src/screens'],
['@utils', './src/utils'],
['@assets', './src/assets'],
['@hooks', './src/hooks'],
['@appRedux', './src/redux'],
['@mocks', './__mocks__']
],
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json']
}
}
}
}
}
}
}
};