This repository has been archived by the owner on Nov 3, 2019. It is now read-only.
forked from joemocha/MTS-Code-Guidelines
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.jshintrc-browser
81 lines (77 loc) · 2.25 KB
/
.jshintrc-browser
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
{
"bitwise" : true,
"freeze" : true,
"curly" : true,
"eqeqeq" : true,
"futurehostile" : true,
"notypeof" : false,
"es3" : true,
"es5" : false,
"forin" : true,
"funcscope" : false,
"globalstrict" : false,
"iterator" : false,
"noarg" : true,
"nocomma" : false,
"nonbsp" : true,
"nonew" : true,
"undef" : true,
"singleGroups" : false,
"asi" : false,
"multistr" : true,
"debug" : false,
"boss" : false,
"phantom" : false,
"evil" : false,
"plusplus" : false,
"proto" : false,
"scripturl" : false,
"strict" : true,
"sub" : true,
"supernew" : false,
"laxcomma" : true,
"validthis" : false,
"withstmt" : false,
"moz" : false,
"noyield" : false,
"eqnull" : false,
"lastsemic" : false,
"loopfunc" : false,
"expr" : false,
"esnext" : false,
"elision" : false,
"mootools" : false,
"couch" : false,
"jasmine" : false,
"jquery" : false,
"node" : false,
"qunit" : false,
"rhino" : false,
"shelljs" : false,
"prototypejs" : false,
"yui" : false,
"mocha" : false,
"wsh" : false,
"worker" : false,
"nonstandard" : false,
"browser" : true,
"browserify" : false,
"devel" : false,
"dojo" : false,
"typed" : false,
"onecase" : true,
"regexdash" : true,
"regexp" : true,
"maxerr" : false,
"globals" : {},
"scope" : false,
"maxstatements" : false,
"maxdepth" : false,
"maxparams" : 10,
"maxcomplexity" : false,
"shadow" : false,
"unused" : "vars",
"latedef" : true,
"ignore" : false,
"ignoreDelimiters": false
}