-
Notifications
You must be signed in to change notification settings - Fork 247
/
Copy patheslint.json
43 lines (43 loc) · 1.12 KB
/
eslint.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
{
"extends": "airbnb/base",
"env": {
"es6" : true,
"node" : true
},
"globals": {
"star" : true
},
"rules": {
"strict": 0,
"indent": 0,
"one-var": 0,
"max-len": 0,
"no-console": 0,
"brace-style": 0,
"key-spacing": 0,
"prefer-const": 0,
"arrow-parens": 0,
"padded-blocks": 0,
"comma-spacing": 0,
"global-require": 0,
"no-multi-spaces": 0,
"keyword-spacing": 0,
"space-infix-ops": 0,
"space-in-parens": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"no-mixed-operators": 0,
"space-before-blocks": 0,
"object-curly-spacing": 0,
"space-after-keywords": 0,
"prefer-destructuring": 0,
"function-paren-newline": 0,
"object-property-newline": 0,
"no-multiple-empty-lines": 0,
"newline-per-chained-call": 0,
"import/newline-after-import": 0,
"space-before-function-paren": 0,
"one-var-declaration-per-line": 0,
"import/no-extraneous-dependencies": 0
}
}