-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path.jshintrc
45 lines (44 loc) · 924 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
{
"bitwise": true,
"browser": true,
"camelcase": true,
"curly": true,
"devel": true,
"eqeqeq": true,
"evil": true,
"forin": true,
"freeze": true,
"globals": {},
"immed": true,
"latedef": "nofunc",
"newcap": true,
"noempty": true,
"nonew": true,
"quotmark": "single",
"strict": true,
"undef": true,
"unused": "vars",
"predef": {
"requirejs": true,
"require": true,
"define": true,
// For Jasmine
"after": true,
"afterAll": true,
"afterEach": true,
"before": true,
"beforeAll": true,
"beforeEach": true,
"describe": true,
"expect": true,
"fdescribe": true,
"fit": true,
"inject": true,
"it": true,
"jasmine": true,
"spyOn": true,
"xdescribe": true,
"xit": true,
"fail": true
}
}