-
Notifications
You must be signed in to change notification settings - Fork 87
/
.eslintrc.json
42 lines (42 loc) · 935 Bytes
/
.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
{
"env": {
"browser": true,
"node": true,
"es2021": true,
"jest": true
},
"extends": ["airbnb", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react"],
"settings": {
"react": {
"version": "detect"
},
"import/resolver": {
"node": {
"paths": ["src"]
}
},
"import/parser": "babel-eslint"
},
"rules": {
"react/no-unescaped-entities": ["error", { "forbid": [">", "}"] }],
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"no-plusplus": ["error", { "allowForLoopAfterthoughts": true }],
"prefer-destructuring": ["error", { "object": true, "array": false }],
"react/require-default-props": 0,
"jsx-a11y/control-has-associated-label": 0,
"react/jsx-props-no-spreading": 0
}
}