-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
48 lines (48 loc) · 1001 Bytes
/
.eslintrc.json
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
{
"extends": "eslint:recommended",
"env": {
"browser": true,
"es6": true,
"node": true
},
"globals": {
"describe": false,
"it": false,
"$": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false,
"expect": false
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"no-console": "off",
"no-constant-condition": "off",
"indent": [
"error",
2,
{
"SwitchCase": 1
}
],
"linebreak-style": ["error", "unix"],
"semi": ["error", "always"],
"keyword-spacing": ["error"],
"array-bracket-spacing": [2, "never"],
"space-in-parens": [2, "never"],
"key-spacing": 2,
"one-var": [2, "never"],
"no-trailing-spaces": 2,
"func-call-spacing": 2,
"no-with": 2,
"spaced-comment": [2, "always"],
"space-infix-ops": 2,
"comma-style": [2, "last"],
"space-before-blocks": [2, "always"],
"eol-last": 2,
"dot-notation": 2
}
}