aboutsummaryrefslogtreecommitdiffstats
path: root/.jshintrc
blob: df4628b92fabfd052daa7bd318967c61a7e5dbe8 (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,
	"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
	}
}