-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
52 lines (49 loc) · 1.38 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
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:react/recommended",
"airbnb"
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"react"
],
"rules": {
"import/extensions": 0,
"import/no-unresolved": 0,
"import/no-webpack-loader-syntax": 0,
"import/prefer-default-export": 0,
"import/no-dynamic-require": 0,
"no-unused-expressions": 0,
"import/no-extraneous-dependencies": 0,
"react/prop-types": 0,
"react/forbid-prop-types": 0,
"react/destructuring-assignment": 0,
"react/no-deprecated": 0,
"react/sort-comp": 0,
"react/require-default-props": 0,
"react/no-find-dom-node": 0,
"react/jsx-fragments": 0,
"react/no-array-index-key": 0,
"react/no-access-state-in-setstate": 0,
"jsx-a11y/alt-text": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0,
"max-len": ["error", { "code": 120 }],
"no-mixed-operators": 0,
"global-require": 0,
"no-nested-ternary": 0,
"no-alert": 0,
"no-console": 0
}
}