-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.cjs
144 lines (143 loc) · 3.46 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
module.exports = {
env: {
browser: true,
es2021: true,
},
extends: [
'react-app',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:eslint-comments/recommended',
'plugin:promise/recommended',
'airbnb',
'prettier',
],
parserOptions: {
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 12,
sourceType: 'module',
},
plugins: [
'react',
'sonarjs',
'cypress',
],
root: true,
ignorePatterns: [
'/build/**/*',
'/coverage/**',
'/dist/**',
],
rules: {
'eslint-comments/disable-enable-pair': ['error', { allowWholeFile: true }],
'no-void': 'off',
'no-restricted-syntax': 'off',
'no-plusplus': ['error', { allowForLoopAfterthoughts: true }],
'sonarjs/cognitive-complexity': ['error', 5],
complexity: ['error', { max: 5 }],
quotes: ['error', 'single', { allowTemplateLiterals: true }],
},
overrides: [
{
files: '**/*.+(ts|tsx)',
extends: [
'airbnb-typescript',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
plugins: [
'react',
'@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './tsconfig.json',
},
rules: {
'no-void': 'off',
'@typescript-eslint/type-annotation-spacing': 'error',
},
},
{
files: 'src/**/*.spec.+(ts|tsx)',
plugins: ['testing-library'],
extends: [
'plugin:testing-library/react',
],
rules: {
'testing-library/no-render-in-setup': ['error', { allowTestingFrameworkSetupHook: 'beforeEach' }],
},
},
{
files: 'vite.config.ts',
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
files: 'src/stories/**/*.+(ts|tsx)',
rules: {
'import/no-extraneous-dependencies': 'off',
'react/jsx-props-no-spreading': 'off',
'import/no-anonymous-default-export': 'off',
},
},
{
files: ['cypress/**/*', 'scripts/**/*'],
rules: {
'import/no-extraneous-dependencies': 'off',
'import/extensions': 'off',
},
extends: [
'plugin:cypress/recommended',
],
},
{
files: 'cypress/**/*.+(ts|tsx)',
extends: [
'airbnb-typescript',
'airbnb/hooks',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
plugins: [
'@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './cypress/tsconfig.json',
},
rules: {
'no-void': 'off',
'no-restricted-syntax': 'off',
'import/no-extraneous-dependencies': 'off',
'promise/always-return': 'off',
'@typescript-eslint/no-unused-expressions': 'off',
},
},
{
files: 'scripts/**/*.ts',
extends: [
'airbnb-typescript',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
],
plugins: [
'@typescript-eslint',
],
parser: '@typescript-eslint/parser',
parserOptions: {
project: './scripts/tsconfig.json',
},
rules: {
'import/no-extraneous-dependencies': 'off',
},
},
{
files: './*.js',
},
],
};