-
Notifications
You must be signed in to change notification settings - Fork 1
/
.eslintrc.json
46 lines (46 loc) · 1.04 KB
/
.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
38
39
40
41
42
43
44
45
46
{
"extends": "@geek",
"globals": {
"alert": "readonly",
"console": "readonly",
"decodeURIComponent": "readonly",
"encodeURIComponent": "readonly",
"JSONC": "writable",
"L": "readonly",
"require": "readonly",
"Ti": "readonly",
"Titanium": "readonly",
"clearTimeout": "readonly",
"clearInterval": "readonly",
"setTimeout": "readonly",
"setInterval": "readonly",
"exports": "readonly",
"module": "readonly",
"$": "readonly",
"Alloy": "readonly",
"Backbone": "readonly",
"DIST_ADHOC": "readonly",
"DIST_STORE": "readonly",
"ENV_DEV": "readonly",
"ENV_DEVELOPMENT": "readonly",
"ENV_PRODUCTION": "readonly",
"ENV_TEST": "readonly",
"OS_ANDROID": "readonly",
"OS_IOS": "readonly",
"OS_MOBILEWEB": "readonly",
"OS_WINDOWS": "readonly",
"WPATH": "readonly",
"__parentSymbol": "readonly",
"_": "writable",
"describe": "readonly",
"it": "readonly",
"mocha": "readonly",
"turbo": "writable",
"logger": "writable",
"URL": "writable",
"IS_DEV": "writable"
},
"rules": {
"no-alert": "off"
}
}