-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.json
48 lines (48 loc) · 986 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
{
"env": {
"browser": true,
"node": true,
"es6": true
},
"globals": {
"Vue": true,
"VueOnsen": true
},
"parser": null,
"rules": {
"no-void": 1,
"no-undef": 2,
"no-empty": 1,
"block-spacing": 0,
"no-undefined": 2,
"eqeqeq": 1,
"no-extra-bind": 1,
"no-empty-label": 0,
"no-unreachable": 2,
"no-eval": 2,
"array-bracket-spacing": 0,
"block-scoped-var": 2,
"arrow-body-style": 0,
"no-func-assign": 1,
"no-shadow": 1,
"arrow-parens": 0,
"no-useless-concat": 1,
"no-extra-boolean-cast": 1,
"no-unused-expressions": 0,
"guard-for-in": 1,
"no-with": 1,
"accessor-pairs": 1,
"no-floating-decimal": 1,
"no-useless-call": 1,
"no-unused-vars": 0,
"no-extra-semi": 2,
"no-var": 2,
"global-require": 0,
"no-eq-null": 1,
"no-ex-assign": 2,
"no-duplicate-case": 2,
"no-fallthrough": 1,
"no-extend-native": 2,
"arrow-spacing": 0
}
}