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