aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: 64a1c03cfab5959681d6c9a2810c9053b5d018a0 (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
25
26
{
	"curly": true,
	"expr": true,
	"newcap": false,
	"quotmark": "double",
	"trailing": true,
	"undef": true,
	"unused": true,
	"latedef": false,
	"eqeqeq": true,
	"maxerr": 100,

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

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

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