-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
52 lines (52 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
{
"globals": {
"jQuery": true,
"console": true,
"module": true,
"document": true,
"require": true,
"window": true,
"Image": true,
"XMLHttpRequest": true,
"setTimeout": true,
"clearTimeout": true,
"clearInterval": true,
"navigator": true,
"setInterval": true,
"define": true,
"HTMLMediaElement": true,
"alert": true,
"antie": true,
"history": true,
"unescape": true,
"ActiveXObject": true,
"DOMParser": true
},
"asi": true,
"laxbreak": true,
"strict": true,
"noarg": true,
"validthis": true,
"latedef": "nofunc",
"undef": true,
"funcscope": true,
"-W041": false,
"-W058": false,
"-W065": false,
"boss": true,
"newcap": false,
"es3": true,
"predef" : [
"sinon",
"describe",
"it",
"beforeEach",
"afterEach",
"expect",
"spyOn",
"jasmine",
"spyOnAll",
"setupApplicationMock",
"getMockDevice"
]
}