This repository was archived by the owner on Nov 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.jshintrc
More file actions
60 lines (54 loc) · 1.33 KB
/
.jshintrc
File metadata and controls
60 lines (54 loc) · 1.33 KB
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
{
"maxerr" : 100,
"browser" : true,
// Libraries
"jquery" : false,
"prototypejs" : false,
"mootools" : false,
"dojo" : false,
"node" : true,
// Development
"debug" : false,
"devel" : true,
"maxcomplexity" : 10,
// ES Options
"es5" : true,
//"esversion" : 6,
"esnext" : true,
"strict" : false,
"globalstrict" : false,
// Coding Rules
"asi" : false,
"laxbreak" : false,
"bitwise" : false,
"boss" : false,
"curly" : true,
"eqeqeq" : true,
"eqnull" : true,
"evil" : false,
"expr" : false,
"forin" : true,
"immed" : true,
"latedef" : true,
"loopfunc" : false,
"noarg" : true,
"regexp" : false,
"regexdash" : false,
"scripturl" : true,
"shadow" : false,
"supernew" : false,
"undef" : true,
"unused" : true,
// Personal
"camelcase" : false,
"newcap" : true,
"indent" : 2,
"quotmark" : "single",
"noempty" : true,
"nonew" : true,
"plusplus" : false,
"sub" : false,
"trailing" : true,
// Globals
"predef" : ["__base", "__app", "__env", "next", "suite", "test"]
}