-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.eslintrc.js
More file actions
63 lines (63 loc) · 1.43 KB
/
Copy path.eslintrc.js
File metadata and controls
63 lines (63 loc) · 1.43 KB
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
54
55
56
57
58
59
60
61
62
63
module.exports = {
"parserOptions": {
"ecmaVersion": "latest"
//"ecmaVersion": 5
},
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"ace": false,
"ol": false,
"Ext": false,
"proj4": false,
"BasiGX": false,
"GeoExt": false,
"Jsonix": false,
"XmlBeautify": false,
"WMS_1_0_0": false,
"WMS_1_1_0": false,
"WMS_1_1_1": false,
"XLink_1_0": false,
"SE_1_1_0": false,
"SLD_1_1_0": false,
"GML_3_1_1": false,
"SMIL_2_0": false,
"SMIL_2_0_Language": false,
"Filter_1_1_0": false,
"WMS_1_3_0": false,
"OWS_1_0_0": false,
"Filter_1_0_0": false,
"WFS_1_0_0": false,
"WFS_1_1_0": false,
"WFS_2_0": false,
"Filter_2_0": false,
"OWS_1_1_0": false,
"OWS_1_0_0": false,
"OwsInspector": false,
"GeoStylerSLDParser": false,
"GeoStylerMapboxParser": false
},
"rules": {
"no-trailing-spaces": "error",
"indent": [
"error",
4,
{ "SwitchCase": 1 }
],
//"linebreak-style": [
// "error",
// "unix"
//],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
};