-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.eslintrc.json
43 lines (43 loc) · 952 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
43
{
"env": {
"browser": true,
"es2020": true,
"jest": true
},
"extends": ["airbnb", "plugin:prettier/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11,
"sourceType": "module"
},
"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": 0,
"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,
"react/prop-types": 0,
"react/jsx-wrap-multilines": 0,
"react/jsx-one-expression-per-line": 0
}
}