-
Notifications
You must be signed in to change notification settings - Fork 0
/
jshint.json
53 lines (53 loc) · 1.12 KB
/
jshint.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
53
{
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"eqeqeq": false,
"globalstrict": true,
"forin": true,
"immed": true,
"indent": 2,
"latedef": true,
"maxcomplexity": false,
"maxdepth": 6,
"maxlen": false,
"maxparams": 20,
"maxstatements": false,
"newcap": false,
"noarg": true,
"noempty": true,
"nonew": false,
"plusplus": false,
"quotmark": false,
"regexp": false,
"strict": true,
"trailing": false,
"undef": true,
"unused": false,
"eqnull": true,
"laxbreak": true,
"globals": {
"$": false,
"angular": false,
"Slick": false,
"require": false,
"browser": false,
"element": false,
"console": false,
"jasmine": false,
"module": false,
"inject": false,
"describe": false,
"beforeEach": false,
"afterEach": false,
"expect": false,
"it": false,
"runs": false,
"waitsFor": false,
"spyOn": false,
"input": false,
"thrift": false,
"Thrift": false
}
}