aboutsummaryrefslogtreecommitdiffstats
path: root/src/.jshintrc
blob: b3ee961445f8a5da9d2677dd85cb00c453f713b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"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": {
		"vAPI": false,
		"chrome": false,
		"safari": false,
		"Components": false // global variable in Firefox
	}
}