-
Notifications
You must be signed in to change notification settings - Fork 12
/
.eslintrc
41 lines (41 loc) · 1008 Bytes
/
.eslintrc
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
{
"extends": [
"@gravity-ui/eslint-config",
"@gravity-ui/eslint-config/prettier",
"@gravity-ui/eslint-config/a11y"
],
"root": true,
"env": {
"node": true,
"jest": true
},
"plugins": ["no-not-accumulator-reassign"],
"rules": {
"no-not-accumulator-reassign/no-not-accumulator-reassign": [
"warn",
["reduce"],
{"props": true}
]
},
"overrides": [
{
"files": ["src/**/*.tsx"],
"rules": {
"react/jsx-fragments": [
"error",
"element"
]
}
},
{
"files": ["**/__tests__/**/*.[jt]s?(x)", "**/?(*.)+(spec|test).[jt]s?(x)"],
"extends": ["plugin:testing-library/react"]
},
{
"files": ["**/__stories__/**/*.[jt]s?(x)"],
"rules": {
"no-console": "off"
}
}
]
}