-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
62 lines (62 loc) · 1.31 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
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"settings": {
"react": {
"version": "latest"
}
},
"extends": [
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:react-hooks/recommended",
"plugin:react/recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"__ENV__": "readonly",
"__TYPE__": "readonly",
"chrome": "readonly"
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"react-hooks/exhaustive-deps": "off",
"react/prop-types": "off",
"import/no-unresolved": "error",
"no-unused-vars": "warn",
"no-unused-expressions": "warn",
"no-unused-labels": "warn",
"no-var": "warn",
"import/named": "warn",
"import/export": "warn",
"import/no-duplicates": "warn",
"import/first": "warn",
"import/order": [
"off",
{
"alphabetize": {
"order": "asc",
"caseInsensitive": true
}
}
],
"import/exports-last": "warn",
"import/newline-after-import": "warn",
"react/no-multi-comp": "off",
"no-console": "off",
"eqeqeq": "warn",
"no-else-return": "warn"
}
}