-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jshintrc
49 lines (49 loc) · 826 Bytes
/
.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
{
"laxcomma": true,
"bitwise": true,
"curly": true,
"esnext": true,
"eqeqeq": true,
"forin": true,
"latedef": true,
"newcap": true,
"noarg": true,
"nonew": false,
"undef": true,
"unused": false,
"trailing": false,
"node": true,
"smarttabs": true,
"debug": true,
"sub": true,
"supernew": true,
"browser": true,
"devel": true,
"strict": true,
"globals": {
"jquery": true,
"jQuery": true,
"$": true,
"angular": true,
"google": true,
"_": true,
"describe": true,
"ddescribe": true,
"xdescribe": true,
"spyOn": true,
"define": true,
"require": true,
"requirejs": true,
"Matchers": true,
"jasmine": true,
"getJSONFixture": true,
"it": true,
"iit": true,
"xit": true,
"protractor": true,
"inject": true,
"expect": true,
"beforeEach": true,
"afterEach": true
}
}