forked from evanshortiss/yr.no-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
39 lines (39 loc) · 970 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
{
"env": {
"node": true,
"mocha": true,
"es6": true
},
"rules": {
"array-bracket-spacing": [2, "never"],
"arrow-body-style": 1,
"arrow-parens": 1,
"brace-style": [2, "1tbs"],
"camelcase": 2,
"comma-dangle": 2,
"comma-spacing": 2,
"computed-property-spacing": [2, "never"],
"curly": 2,
"dot-notation": 2,
"eol-last": 0,
"eqeqeq": [2, "smart"],
"no-extra-parens": 1,
"no-floating-decimal": 2,
"no-debugger": 2,
"no-redeclare": 2,
"no-spaced-func": 2,
"no-undef": 1,
"no-underscore-dangle": 0,
"no-unused-vars": [2, {"vars": "all", "args": "after-used"}],
"no-use-before-define": [2, "nofunc"],
"no-warning-comments": 0,
"object-curly-spacing": [2, "never"],
"prefer-const": ["error"],
"quotes": [2, "single"],
"semi": [2, "always"],
"keyword-spacing": [2, { "after": true }],
"space-infix-ops": 2,
"strict": 0,
"valid-jsdoc": 0
}
}