-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.json
193 lines (193 loc) · 5.17 KB
/
.eslintrc.json
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
{
"settings": {
"react": {
"version": "detect"
}
},
"env": {
"browser": true,
"es2021": true,
"node": true,
"jest": true
},
"extends": [
"airbnb",
"eslint:recommended",
"plugin:react/recommended",
"plugin:prettier/recommended"
],
"overrides": [],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react", "react-redux", "react-hooks", "sonarjs", "react-func"],
"rules": {
"indent": ["error", 2],
"linebreak-style": 0,
"quotes": ["error", "single"],
"semi": ["error", "always"],
"class-methods-use-this": ["off"],
"no-underscore-dangle": [
"error",
{
"allow": ["__REDUX_DEVTOOLS_EXTENSION_COMPOSE__"]
}
],
"no-magic-numbers": [
"error",
{
"ignore": [0, 1, 2, 100],
"ignoreArrayIndexes": true,
"enforceConst": true,
"detectObjects": false
}
],
"react/button-has-type": [
"error",
{
"button": true,
"submit": true,
"reset": true
}
],
"no-console": ["off"],
"no-param-reassign": ["off"],
"consistent-return": ["off"],
"no-undef": ["off"],
"max-len": [
"error",
{
"code": 90,
"ignoreComments": true,
"ignoreUrls": true,
"ignoreRegExpLiterals": true
}
],
"max-params": ["error", 4],
"max-lines": ["error", 250],
"max-lines-per-function": ["off"],
"react-func/max-lines-per-function": ["error", 50],
"complexity": ["error", 15],
"object-curly-newline": ["off"],
"import/no-extraneous-dependencies": ["off"],
"sonarjs/cognitive-complexity": ["error", 15],
"sonarjs/no-collapsible-if": ["error"],
"sonarjs/no-collection-size-mischeck": ["error"],
"sonarjs/no-duplicate-string": ["error"],
"sonarjs/no-duplicated-branches": ["error"],
"sonarjs/no-extra-arguments": ["error"],
"sonarjs/no-identical-conditions": ["error"],
"sonarjs/no-identical-expressions": ["error"],
"sonarjs/no-identical-functions": ["error"],
"sonarjs/no-inverted-boolean-check": ["error"],
"sonarjs/no-one-iteration-loop": ["error"],
"sonarjs/no-redundant-boolean": ["error"],
"sonarjs/no-unused-collection": ["error"],
"sonarjs/no-use-of-empty-return-value": ["error"],
"sonarjs/no-useless-catch": ["error"],
"sonarjs/prefer-object-literal": ["error"],
"sonarjs/prefer-single-boolean-return": ["error"],
"react/jsx-filename-extension": [
1,
{
"extensions": [".js", ".jsx"]
}
],
"react/default-props-match-prop-types": [
"error",
{
"allowRequiredDefaults": false
}
],
"react/no-array-index-key": ["off"],
"react/destructuring-assignment": ["error", "always"],
"react/forbid-component-props": ["error"],
"react/forbid-prop-types": ["error"],
"react/jsx-props-no-spreading": ["off"],
"react/no-multi-comp": [
"error",
{
"ignoreStateless": false
}
],
"react/prefer-stateless-function": ["off"],
"react/no-access-state-in-setstate": ["error"],
"react/no-redundant-should-component-update": ["error"],
"react/no-this-in-sfc": ["error"],
"react/no-typos": ["error"],
"react/no-unsafe": ["error"],
"react/no-unused-state": ["error"],
"react/no-will-update-set-state": ["error"],
"react/prefer-es6-class": ["error", "always"],
"react/self-closing-comp": ["error"],
"react/state-in-constructor": ["off"],
"react/void-dom-elements-no-children": ["error"],
"react/jsx-closing-bracket-location": ["error"],
"react/jsx-closing-tag-location": ["error"],
"react/jsx-curly-newline": ["error"],
"react/jsx-fragments": ["error"],
"react/jsx-max-depth": [
"error",
{
"max": 4
}
],
"react/jsx-no-useless-fragment": ["error"],
"react/jsx-curly-spacing": [
"error",
{
"when": "always"
}
],
"react/jsx-equals-spacing": ["error", "never"],
"react/jsx-first-prop-new-line": ["error", "multiline"],
"react/jsx-indent": [
"error",
2,
{
"checkAttributes": true,
"indentLogicalExpressions": true
}
],
"react/jsx-indent-props": ["error", 2],
"react/jsx-key": ["error"],
"react/jsx-max-props-per-line": [
"error",
{
"maximum": 1,
"when": "multiline"
}
],
"react/jsx-tag-spacing": [
"error",
{
"closingSlash": "never",
"beforeSelfClosing": "always",
"afterOpening": "never",
"beforeClosing": "never"
}
],
"react/jsx-wrap-multilines": [
"error",
{
"declaration": "parens",
"assignment": "parens",
"return": "parens",
"arrow": "parens",
"condition": "ignore",
"logical": "ignore",
"prop": "ignore"
}
],
"react-redux/connect-prefer-named-arguments": ["error"],
"react-redux/no-unused-prop-types": ["error"],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"react/react-in-jsx-scope": "off",
"default-param-last": "off"
}
}