aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: 72a58de2ea12eab277afbf5124b4698dc697d907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
	"curly": true,
	"expr": true,
	"newcap": false,
	"quotmark": "double",
	"regexdash": true,
	"strict": true,
	"trailing": true,
	"undef": true,
	"unused": true,
	"maxerr": 100,

	"eqnull": true,
	"evil": true,
	"sub": true,

	"browser": true,
	"wsh": true,

	"predef": [
		"define",
		"jQuery"
	]
}