-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
51 lines (48 loc) · 1.05 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
{
"extends": "eslint:recommended",
env: {
"mocha": true,
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
rules: {
"strict": 0,
"quotes": [2, "single"],
"indent": [2, 2, {SwitchCase: 1}],
"semi": [2, "always"],
"no-underscore-dangle": 0,
"no-unused-vars": 1,
"no-unused-expressions": 0,
"new-cap": 0,
"no-extra-boolean-cast": 0,
"yoda": 0,
"no-empty": 0,
"no-use-before-define": 0,
"camelcase": 0,
"object-curly-spacing": 0,
"array-bracket-spacing": 0,
"max-len": 0,
"comma-dangle": [2, "never"],
"space-before-function-paren": 0,
"arrow-body-style": 0,
"no-param-reassign": 0,
"consistent-return": 0,
"no-console": 0,
"no-void": 0,
"func-names": 0,
"no-nested-ternary": 0,
"quote-props": 0,
"space-infix-ops": 0,
"prefer-const": 0,
"prefer-template": 0,
"spaced-comment": 0,
"prefer-rest-params": 0,
"no-unreachable": 0
}
}