-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc
41 lines (41 loc) · 976 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": "react-app",
"rules": {
"eqeqeq": 0,
"no-undef": 0,
"default-case": 0,
"no-redeclare": 0,
"import/first": 0,
"no-unused-vars": 0,
"no-useless-escape": 0,
"no-mixed-operators": 0,
"no-restricted-globals": 0,
"no-useless-constructor": 0,
"no-control-regex": 0,
"no-throw-literal": 0,
"jsx-a11y/alt-text": 0,
"react/jsx-no-target-blank": 0,
"no-sequences": 0,
"no-fallthrough": 0,
"no-cond-assign": 0,
"strict": 0,
"no-loop-func": 0,
"array-callback-return": 0,
"no-shadow-restricted-names": 0,
"no-unused-expressions": 0,
"no-new-func": 0,
"new-parens": 0,
"no-whitespace-before-property": 0,
"no-script-url": 0,
"no-unreachable": 0,
"no-extend-native": 0,
"no-extra-label": 0,
"no-label-var": 0,
"no-native-reassign": 0,
"radix": 0,
"no-self-assign": 0,
"no-useless-concat": 0,
"no-eval": 0,
"valid-typeof": 0
}
}