-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc
70 lines (68 loc) · 1.12 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"globals": {
"_": true,
"$": true,
"jQuery": true,
"async": true,
"moment": true,
"io": true,
"bootbox": true,
"FB": true,
"BrowserCheck": true
},
"predef": [
"angular",
"jasmine",
"spyOn",
"it",
"console",
"describe",
"after",
"before",
"beforeEach",
"waits",
"waitsFor",
"runs",
"alert",
"confirm",
"Modernizr",
"impress",
"exports",
"self",
"define",
"google"
],
"node" : true,
"es5" : false,
"browser" : true,
"jquery": true,
"camelcase": true,
"unused": false, //turn this on at some point
"indent": 2,
"maxlen": 400,
"noempty": false, //turn this on at some point
"boss" : false,
"curly": false,
"debug": false,
"devel": false,
"eqeqeq": true,
"evil": true,
"forin": false,
"immed": false,
"laxbreak": true,
"laxcomma": true,
"newcap": true,
"noarg": true,
"nonew": false,
"nomen": false,
"onevar": false,
"plusplus": false,
"regexp": false,
"undef": true,
"sub": true,
"strict": false,
"white": false,
"asi": false,
"quotmark": true,
"expr": true
}