-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc
43 lines (43 loc) · 1 KB
/
.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
{
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"defaultParams": true,
"forOf": true,
"generators": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"templateStrings": true
},
"env": {
"browser": true
},
"rules": {
"no-console": 0,
"quotes": "single",
"eqeqeq": 0,
"eol-last": 0,
"semi": 0,
"strict": 0,
"curly": 0,
"camelcase": 0
},
"globals": {
"_": true,
"angular": true,
"openpgp": true,
"saveAs": true,
"Lavaboom": true,
"loader": true,
"checker": true,
"assets": true,
"process": true,
"require": true,
"module": true,
"__dirname": true
}
}