aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
blob: 618c34f76ce18570608b6df766d17557c1d1acc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
	"browser": true,
	"devel": true,
	"esnext": true,
	"globalstrict": true,
	"undef": true,
	"unused": true,
	"nonew": false,
	"sub": true,
	"boss": true,
	"laxbreak": true,
	"validthis": true,
	"newcap": false,
	"-W058": true, // suppress "Missing '()' invoking a constructor" message
	"globals": {
		"self": false,
		"vAPI": false,
		"chrome": false,
		"safari": false,
		"Components": false // global variable in Firefox
	}
}