-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.json
More file actions
43 lines (43 loc) · 827 Bytes
/
.eslintrc.json
File metadata and controls
43 lines (43 loc) · 827 Bytes
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
{
"extends": "eslint:recommended",
"rules": {
"no-console": 0,
"eqeqeq": 1,
"no-else-return": 1,
"array-bracket-spacing": 1,
"brace-style": [1, "1tbs", {
"allowSingleLine": true
}],
"comma-spacing": 1,
"eol-last": 1,
"key-spacing": 1,
"object-curly-spacing": 1,
"space-before-blocks": 1,
"keyword-spacing": 1,
"quotes": [2, "single", {
"avoidEscape": true
}],
"indent": ["warn", 2]
},
"env": {
"browser": true
},
"plugins": [
"html"
],
"globals": {
"Polymer": false,
"assert": false,
"it": false,
"describe": false,
"MockInteractions": false,
"fixture": false,
"flush": false,
"WCT": false,
"hljs": false,
"beforeEach": false,
"suite": false,
"test": false,
"setup": false
}
}