-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc
54 lines (54 loc) · 953 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"rules": {
"no-console": "off",
"no-debugger": "off",
"no-unused-vars": "off",
"eqeqeq": "error",
"no-useless-escape": "off",
"quotes": [
"error",
"single",
{
"avoidEscape": false
}
],
"max-len": [
2,
{
"code": 130,
"tabWidth": 4,
"ignoreUrls": true,
"ignoreComments": true
}
],
"curly": [
"error",
"all"
]
},
"extends": "eslint:recommended",
"globals": {
"L": "readonly",
"GW2MapOptions": "writable",
"GW2MapContainers": "writable",
"GW2MAP_I18N": "readonly",
"GW2MAP_EXTRA_LAYERS": "readonly",
"GW2W_SECTOR_NAMES": "readonly",
"GW2W_POI_NAMES": "readonly",
"GW2W_HEROPOINT_NAMES": "readonly",
"GW2W_MASTERY_NAMES": "readonly"
},
"env": {
"browser": true,
"es6": true,
"commonjs": true,
"phantomjs": true,
"jasmine": true,
"node": true
}
}