aboutsummaryrefslogtreecommitdiffstats
path: root/tests/.eslintrc.json
blob: 714077182aee9b62df48f5ad63a2778e307df5d1 (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
{
	"parserOptions": {
		"ecmaVersion": 5
	},

	"env": {
		"browser": true,
		"jquery": true,
		"node": false
	},

	"rules": {
		// Too many violations:
		"max-len": "off",
		"no-unused-vars": "off",
		"strict": "off" // ideally, `[ "error", "function" ]`
	},

	"globals": {
		"define": false,
		"Globalize": false,
		"QUnit": false,
		"require": true,
		"requirejs": true
	}
}