aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: 10541d501cce1cd745d281c03f59ac222c06c474 (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
27
28
{
	"boss": true,
	"curly": true,
	"eqeqeq": true,
	"eqnull": true,
	"expr": true,
	"immed": true,
	"noarg": true,
	"onevar": true,
	"quotmark": "double",
	"smarttabs": true,
	"trailing": true,
	"undef": true,
	"unused": true,

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

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

	"globals": {
		"jQuery": true,
		"define": true,
		"module": true
	}
}