aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: 1f094de683e8d4e3b5a5be46245e1b8dc5c3e560 (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,
	"trailing": true,
	"undef": true,
	"unused": true,
	"maxerr": 100,

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

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

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