-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
33 lines (33 loc) · 1010 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
{
"parser": "babel-eslint",
"env": {
"node": true,
"es6": true,
"browser": true,
"mocha": true
},
"rules": {
"eqeqeq": [2, "smart"],
"no-caller": 2,
"no-else-return": 2,
"no-eq-null": 2,
"quotes": [2, "single"],
"no-new-func": 2,
"camelcase": [2, {"properties": "always"}],
"brace-style": [2, "1tbs", { "allowSingleLine": true }],
"strict": [2, "global"],
"comma-spacing": [2, {"before": false, "after": true}],
"indent": [2, 2],
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"no-mixed-spaces-and-tabs": [2, "smart-tabs"],
"space-before-blocks": [2, "always"],
"space-before-function-paren": [2, "never"],
"array-bracket-spacing": [2, "never"],
"object-curly-spacing": [2, "always"],
"computed-property-spacing": [2, "never"],
"space-in-parens": [2, "never"],
"space-infix-ops": 2,
"keyword-spacing": [2, {"before": true, "after": true, "overrides": {}}],
"dot-notation": 0
}
}