-
Notifications
You must be signed in to change notification settings - Fork 57
/
.eslintrc
36 lines (36 loc) · 916 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
{
"extends": "airbnb-base",
"env": {
"browser": true,
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"prefer-const": 0,
"no-plusplus": 0,
"indent": ["error", 4, {
"SwitchCase": 1
}],
"prefer-template": 0,
"no-underscore-dangle": 0,
"arrow-body-style": 0,
"no-shadow": 0,
"no-param-reassign": 0,
"no-mixed-operators": 0,
"no-multi-assign": 0,
"no-bitwise": 0,
"max-len": 0,
"guard-for-in": 0,
"no-restricted-syntax": 0,
"no-floating-decimal": 0,
"comma-dangle": 0,
"no-continue": 0,
"func-names": 0,
"prefer-rest-params": 0,
"prefer-spread": 0,
"space-before-function-paren": ["error", "never"],
"prefer-destructuring": 0,
"no-buffer-constructor": 0
}
}