-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
35 lines (35 loc) · 952 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
{
"root":true,
"env": {
"browser": true,
"commonjs": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest"
},
"ignorePatterns": ["extra/*", "node_modules/*", "ck-inc/space/*"],
"globals": {
"$": "readonly",
"bean": "readonly",
"cAuth": "readonly",
"cBrowser": "readonly",
"cCommonStatus.set_error_status": "readonly",
"cCommonStatus.set_status": "readonly",
"cDebug": "readonly",
"cHttp": "readonly",
"cHttp2": "readonly",
"cHttpQueue": "readonly",
"cHttpQueueItem": "readonly",
"cJquery": "readonly",
"cAppLocations": "readonly",
"cMission": "readonly",
"cQueue": "readonly",
"cSecret": "readonly",
"FB":"readonly",
"ga": "readonly",
"google": "readonly",
"jQuery": "readonly"
}
}