forked from plugCubed/plugCubed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
52 lines (52 loc) · 1.24 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
47
48
49
50
51
52
{
"extends": "thedark1337/browser",
"parserOptions": {
"ecmaVersion": 5,
"ecmaFeatures": {
"modules": false
}
},
"env": {
"amd": true
},
"globals": {
"API": false,
"gapi": false,
"loading": false,
"plugCubed": true,
"plugCubedUserData": true,
"requirejs": false,
"SC": false,
"startWooting": false,
"VERSION": false,
"_": false
},
"rules": {
"no-alert": 0,
"camelcase": 0,
"func-style": 0,
"newline-per-chained-call": 0,
"no-caller": 0,
"no-implicit-coercion": 0,
"no-loop-func": 0,
"no-negated-condition": 0,
"no-unused-expressions": [2, {
"allowShortCircuit": true,
"allowTernary": true
}],
"no-useless-escape": 0,
"no-var": 0,
"object-shorthand": 0,
"one-var": [2, {
"uninitialized": "always",
"initialized": "never"
}],
"prefer-arrow-callback": 0,
"prefer-destructuring": 0,
"prefer-reflect": 0,
"prefer-rest-params": 0,
"prefer-spread": 0,
"prefer-template": 0,
"strict": 0
}
}