-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (39 loc) · 861 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
{
"parserOptions": {
"ecmaVersion": 7,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"rules": {
"semi": 2,
"no-compare-neg-zero": 1,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-empty": 2,
"no-extra-boolean-cast": 2,
"no-extra-semi": 2,
"no-func-assign": 1,
"no-inner-declarations": 1,
"no-irregular-whitespace": 2,
"no-unreachable": 2,
"array-callback-return": 1,
"block-scoped-var": 1,
"eqeqeq": 2,
"no-eval": 1,
"no-multi-spaces": 2,
"array-bracket-spacing": 2,
"block-spacing": 2,
"camelcase": 1,
"comma-spacing": 2,
"newline-before-return": 2,
"no-multiple-empty-lines": 2,
"no-trailing-spaces": 2,
"space-infix-ops": 2,
"spaced-comment": 1,
"constructor-super": 2,
"no-const-assign": 2,
"no-var": 2
}
}