-
Notifications
You must be signed in to change notification settings - Fork 9
/
.eslintrc.json
41 lines (41 loc) · 1.03 KB
/
.eslintrc.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
{
"extends": ["airbnb"],
"rules": {
"max-len": [1, 120, 2, {"ignoreComments": true}],
"quote-props": [1, "consistent-as-needed"],
"no-cond-assign": [2, "except-parens"],
"radix": 0,
"space-infix-ops": 0,
"no-unused-vars": [1, {"vars": "local", "args": "none"}],
"default-case": 0,
"no-else-return": 0,
"no-param-reassign": 0,
"quotes": 0,
"indent": [2, 4],
"comma-dangle": [1, "never"],
"consistent-return": [0],
"no-underscore-dangle": [0],
"class-methods-use-this": 0,
"no-use-before-define": 0,
"prefer-const": 0,
"arrow-body-style": 0,
"no-unused-expressions": 0,
"func-names": 0,
"no-plusplus": 0,
"no-console": 0,
"one-var": 0,
"one-var-declaration-per-line": 0,
"no-continue": 0,
"no-restricted-syntax": 0,
"no-prototype-builtins": 0,
"padded-blocks": 0,
"prefer-promise-reject-errors": 0,
"prefer-destructuring": 0,
"object-curly-newline": 0
},
"env": {
"node": true,
"mocha": true,
"jasmine": true
}
}