-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc
37 lines (37 loc) · 931 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
{
"extends": "airbnb",
"globals": {
"M": true,
"ol": "true",
"CustomEvent": "true",
"Handlebars": true,
"proj4": true,
"ActiveXObject": true,
"jsts": true,
"document": true,
"window": true,
"DOMParser": true,
"XMLHttpRequest": true,
"Image": true,
"Draggabilly": true,
"XMLSerializer": true,
},
"rules": {
"no-underscore-dangle": ["error", { "allowAfterThis": true }],
"import/extensions": ["error", "never"],
"import/no-unresolved": "off",
"prefer-destructuring": "off",
"arrow-body-style": "off",
"no-unused-vars": ["error", {
"vars": "all",
"args": "none"
}],
"class-methods-use-this": "off",
"no-case-declarations": "off",
"import/no-mutable-exports": "off",
"no-template-curly-in-string": "off",
"import/no-duplicates": off,
"import/no-named-default": "off",
"no-restricted-globals": off
}
}