-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.eslintrc
58 lines (55 loc) · 1.39 KB
/
.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"extends": "airbnb-base/legacy",
"parserOptions": {
"ecmaVersion": 2018,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"env": {
"node": true,
"jasmine": true,
"es6": true
},
"rules": {
"class-methods-use-this": 0,
"comma-dangle": ["error", {
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}],
"default-case": 0,
"function-paren-newline": [0, "consistent"],
"key-spacing": [2, { "mode": "minimum" }],
"max-len": [1, 80],
"no-await-in-loop": 0,
"no-console": 0,
"no-multi-spaces": [2, { "exceptions": {
"Property": true,
"VariableDeclarator": true,
"AssignmentExpression": true,
"ObjectExpression": true,
"ClassProperty": true
}}],
"no-param-reassign": 0,
"no-plusplus": 0,
"no-restricted-syntax": [
"error",
"LabeledStatement",
"WithStatement"
],
"no-underscore-dangle": 0,
"no-unused-expressions": 0,
"no-use-before-define": 0,
"object-curly-newline": 0,
"spaced-comment": [2, "always", {
"line": { "markers": ["*package", "!", ",", "noinspection"] },
"block": {
"balanced": true,
"markers": ["*package", "!", ",", "noinspection"],
"exceptions": ["*"] }
}]
}
}