-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.eslintrc.json
37 lines (37 loc) · 958 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
{
"env": {
"browser": true,
"es6": true,
"jquery": true
},
"extends": [
"eslint:recommended"
],
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly",
"OpenLayers": "readonly",
"lizMap": "readonly",
"lizDict": "readonly",
"lizUrls": "readonly"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"ignorePatterns": [
"wps/www/OpenLayers/Format/*.js",
"wps/www/OpenLayers/Format/Filter/*.js",
"wps/www/OpenLayers/Format/OWSCommon/*.js",
"wps/www/OpenLayers/Format/WFST/*.js",
"wps/www/OpenLayers/Format/WPSCapabilities/*.js",
"wps/www/OpenLayers/*.js"
],
"rules": {
"indent": ["error", 4, {
"SwitchCase": 1, "ignoredNodes": ["TemplateLiteral *"]
}
],
"no-prototype-builtins": "off"
}
}