-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.jshintrc
More file actions
40 lines (39 loc) · 701 Bytes
/
.jshintrc
File metadata and controls
40 lines (39 loc) · 701 Bytes
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
{
"expr": true,
"eqeqeq": true,
"eqnull": true,
"indent": 2,
"latedef": "nofunc",
"newcap": true,
"quotmark": true,
"trailing": true,
"undef": true,
"unused": true,
"lastsemic": true,
"boss": true,
"funcscope": true,
"loopfunc": true,
"smarttabs": true,
"sub": true,
"esnext": true,
"node": true,
"noyield": true,
"laxbreak": true,
"noyield": true,
// Custom Global
"globals": {
// Mocha
"describe": false,
"xdescribe": false,
"it": false,
"xit": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false,
"define": false,
"window": false,
"seajs": false,
"document": false
}
}