-
Notifications
You must be signed in to change notification settings - Fork 66
/
.eslintrc
53 lines (53 loc) · 1015 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"env": {
"browser": true
},
"plugins": ["eslint-plugin-html"],
"globals": {
"Polymer": false
},
"rules": {
"comma-spacing": 2,
"eol-last": 2,
"eqeqeq": 2,
"new-parens": 2,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-ex-assign": 2,
"no-fallthrough": 2,
"no-invalid-this": 2,
"no-multiple-empty-lines": [
2, {
"max": 1
}
],
"no-trailing-spaces": 2,
"no-undef": 2,
"no-unreachable": 2,
"no-unused-vars": [
2, {
"vars": "all",
"args": "after-used"
}
],
"prefer-const": 2,
"quotes": [
2, "single", "avoid-escape"
],
"semi": 2,
"keyword-spacing": 2,
"space-before-blocks": [
2, "always"
],
"space-before-function-paren": ["error", {
"anonymous": "always",
"named": "ignore",
"asyncArrow": "ignore"
}],
"space-infix-ops": 2,
"strict": 0,
"valid-typeof": 2
}
}