fnp
/
fnpeditor.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
linting config: disallow using global jquery object
[fnpeditor.git]
/
.jshintrc
1
{
2
// See http://www.jshint.com/docs/options/
3
4
// Enforcing
5
"bitwise" : true,
6
"camelcase" : false,
7
"curly" : true,
8
"eqeqeq" : true,
9
"es3" : false,
10
"forin" : true,
11
"immed" : true,
12
"indent" : false,
13
"latedef" : true,
14
"newcap" : true,
15
"noarg" : true,
16
"noempty" : true,
17
"nonew" : true,
18
"plusplus" : false,
19
"quotmark" : true,
20
"undef" : true,
21
"unused" : true,
22
"strict" : true,
23
"trailing" : true,
24
"maxparams" : false,
25
"maxdepth" : false,
26
"maxstatements" : false,
27
"maxcomplexity" : false,
28
"maxlen" : false,
29
30
// Relaxing
31
"asi" : false,
32
"boss" : false,
33
"debug" : false,
34
"eqnull" : false,
35
"esnext" : false,
36
"evil" : false,
37
"expr" : false,
38
"funcscope" : false,
39
"globalstrict" : false,
40
"iterator" : false,
41
"lastsemic" : false,
42
"laxbreak" : false,
43
"laxcomma" : false,
44
"loopfunc" : false,
45
"moz" : false,
46
"multistr" : false,
47
"proto" : false,
48
"scripturl" : false,
49
"smarttabs" : false,
50
"shadow" : false,
51
"sub" : false,
52
"supernew" : false,
53
"validthis" : false,
54
55
// Environments
56
"browser" : true,
57
"couch" : false,
58
"devel" : false,
59
"dojo" : false,
60
"jquery" : false,
61
"mootools" : false,
62
"node" : false,
63
"nonstandard" : false,
64
"phantom" : false,
65
"prototypejs" : false,
66
"rhino" : false,
67
"worker" : false,
68
"wsh" : false,
69
"yui" : false,
70
71
// Custom Globals
72
"globals" : {"define": false }
73
}