-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
.jshintrc
60 lines (60 loc) · 1.1 KB
/
.jshintrc
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
55
56
57
58
59
60
{
"esversion": 8,
"node": true,
"undef": true,
"unused": true,
"boss": true,
"eqeqeq": true,
"curly": true,
"loopfunc": true,
"multistr": true,
"browser": true,
"node": true,
"shelljs": true,
"globals": {
"nodefony": true,
"kernel": true,
"process": true,
"require": true,
"console": true,
"module": true,
"exports": true,
"kernel": true,
"yaml": true,
"util": true,
"fs": true,
"path": true,
"cluster": true,
"xmlParser": true,
"async": true,
"crypto": true,
"Sequelize": true,
"url": true,
"http": true,
"https": true,
"pm2": true,
"WebSocketServer": true,
"nodedomain": true,
"dns": true,
"Promise": true,
"zone": true,
"it": true,
"describe": true,
"before": true,
"beforeEach": true,
"BlueBird": true,
"twig": true,
"shell": true,
"clc": true,
"notDefinded": true,
"varNotExit": true,
"window": true,
"document": true,
"navigator": true,
"stage": true,
"$": true,
"jQuery": true,
"Rx": true,
"inquirer": true
}
}