-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc
45 lines (42 loc) · 809 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
37
38
39
40
41
42
43
44
45
{
"env": {
"node": true
},
"plugins": [
"nodeca"
],
"rules": {
"brace-style": [2, "1tbs"],
"default-case": 2,
"camelcase": 2,
"consistent-this": [2, "self"],
"dot-notation": 0,
"eol-last": 2,
"func-names": 2,
"func-style": [2, "declaration"],
"guard-for-in": 2,
"new-cap": 2,
"no-floating-decimal": 2,
"no-lonely-if": 2,
"no-mixed-spaces-and-tabs": [2, true],
"no-multi-spaces": 2,
"no-nested-ternary": 2,
"no-use-before-define": 2,
"no-undefined": 2,
"no-underscore-dangle": 0,
"nodeca/indent": [2, "tabs", 1],
"nodeca/no-lodash-aliases": 2,
"quotes": [2, "single"],
"radix": 2,
"space-after-keywords": [2, "always"],
"valid-jsdoc": [2, {
"prefer": {
"return": "returns"
}
}],
"wrap-iife": 2
},
"globals": {
"console": false
}
}