-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
40 lines (39 loc) · 785 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
{
"bitwise":true,
"browser":true,
"camelcase":true,
"curly":true,
"eqeqeq":true,
"esnext":true,
"expr":true,
"forin":true,
"freeze":true,
"immed":true,
"latedef":true,
"maxcomplexity":6,
"maxdepth":4,
"nonew":true,
"noarg":true,
"noempty":true,
"node":true,
"plusplus":true,
"quotmark":true,
"strict":true,
"undef":true,
"unused":true,
// Additional globals introduced by Mocha and bootstrap.js
"globals": {
"describe" : false,
"xdescribe" : false,
"it" : false,
"xit" : false,
"before" : false,
"after" : false,
"beforeEach" : false,
"afterEach" : false,
"expect" : false,
"sinon" : false,
"srcPath" : false,
"__utils__" : false
}
}