-
Notifications
You must be signed in to change notification settings - Fork 126
/
.eslintrc
57 lines (57 loc) · 1.03 KB
/
.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
46
47
48
49
50
51
52
53
54
55
56
57
{
"parserOptions": {
"ecmaVersion": "latest",
"impliedStrict": true
},
"env": {
"es6": true,
"browser": true,
"node": true
},
"globals": {
"jsu": true
},
"extends": [
"eslint:recommended"
],
"rules": {
"indent": [
"error",
4,
{
"SwitchCase": 1
}
],
"no-console": [
"error",
{
"allow": [
"error"
]
}
],
"dot-notation": [
"error",
{
"allowKeywords": false
}
],
"prefer-const": "error",
"prefer-arrow-callback": "error",
"no-var": "error",
"no-multi-spaces": "warn",
"no-useless-escape": "off",
"no-unused-vars": "off",
"space-infix-ops": "warn",
"arrow-spacing": "warn",
"func-call-spacing": "error",
"space-in-parens": "warn",
"array-bracket-spacing": "warn",
"object-curly-spacing": "warn",
"computed-property-spacing": "warn",
"keyword-spacing": "warn",
"comma-spacing": "warn",
"quotes": "warn",
"semi": "warn"
}
}