forked from jieter/Leaflet.Sync
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
38 lines (38 loc) · 781 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
{
"rules": {
"camelcase": 2,
"quotes": [2, "single", "avoid-escape"],
"indent": ["error", 4, {
"MemberExpression": "off"
}],
"space-before-function-paren": 2,
"space-in-parens": 2,
"object-curly-spacing": 2,
"space-before-blocks": 2,
"keyword-spacing": 2,
"no-lonely-if": 2,
"comma-spacing": [2, {"after": true}],
"comma-style": 2,
"no-underscore-dangle": 0,
"no-constant-condition": 0,
"no-multi-spaces": 2,
"strict": 0,
"key-spacing": 2,
"no-shadow": 0,
"no-console": 2,
"semi": 2,
"curly": 2
},
"globals": {
"L": true,
"module": true,
"define": true
},
"plugins": [
"html"
],
"settings": {
"html/report-bad-indent": 2,
"html/indent": "space"
}
}