-
Notifications
You must be signed in to change notification settings - Fork 221
/
.jshintrc
102 lines (102 loc) · 2.01 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"asi" : false,
"bitwise" : false,
"boss" : true,
"browser" : true,
"camelcase" : false,
"couch" : false,
"curly" : false,
"debug" : true,
"devel" : true,
"dojo" : false,
"eqeqeq" : true,
"eqnull" : true,
"esnext" : false,
"evil" : true,
"expr" : true,
"forin" : true,
"funcscope" : false,
"globalstrict" : true,
"immed" : true,
"indent" : 4,
"iterator" : false,
"jquery" : true,
"lastsemic" : true,
"latedef" : false,
"laxbreak" : false,
"laxcomma" : false,
"loopfunc" : false,
"maxcomplexity" : 10,
"maxdepth" : 4,
"maxerr" : 100,
"maxlen" : 120,
"maxstatements" : 35,
"mootools" : false,
"multistr" : false,
"newcap" : true,
"noarg" : true,
"node" : true,
"noempty" : true,
"nomen" : false,
"nonstandard" : false,
"onecase" : false,
"onevar" : false,
"passfail" : false,
"plusplus" : false,
"predef" : [
"__dirname",
"element",
"browser",
"require",
"jasmine",
"describe",
"xdescribe",
"it",
"iit",
"angular",
"inject",
"xit",
"beforeEach",
"afterEach",
"expect",
"input",
"pause",
"spyOn",
"runs",
"waits",
"waitsFor",
"Benchmark",
"Raphael",
"Backbone",
"Modernizr",
"Handlebars",
"Ext",
"_gaq",
"module",
"exports",
"define",
"$",
"jQuery",
"grunt",
"phantom",
"WebPage"
],
"proto" : false,
"prototypejs" : false,
"quotmark" : "single",
"regexdash" : false,
"regexp" : false,
"rhino" : false,
"scripturl" : false,
"shadow" : false,
"smarttabs" : false,
"strict" : true,
"sub" : false,
"supernew" : false,
"trailing" : true,
"undef" : true,
"unused" : true,
"validthis" : false,
"white" : false,
"wsh" : false
}