-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheslintrc
41 lines (41 loc) · 930 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
{
"ecmaFeatures": {
"experimentalObjectRestSpread": true
},
"rules": {
"comma-dangle": [0, "never"],
"no-multi-spaces": 0,
"key-spacing": [2, {
"beforeColon": false,
"afterColon": true,
"mode": "minimum"
}],
"func-names": 0,
"no-use-before-define": 0,
"id-length": 0,
"radix": 0,
"new-cap": 0,
"no-underscore-dangle": 0,
"max-len": 0,
"space-before-function-paren": 0,
"import/extentions": "never",
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"arrow-body-style": 0,
"newline-per-chained-call": 0,
"array-callback-return": 0,
"prefer-arrow-callback": 0,
"arrow-parens": ["error", "as-needed"]
},
"globals": {
"andThen": true,
"visit": true,
"click": true,
"find": true,
"currentURL": true,
"currentPath": true,
"server": true,
"$": false,
"fillIn": true
}
}