aboutsummaryrefslogtreecommitdiffstats
path: root/tests/runner/.eslintrc.json
blob: 9ca2e75f60431515251d5957d7007f8557ec3bd2 (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
27
28
29
30
31
32
33
34
35
36
37
38
{
	"root": true,

	"extends": "jquery",

	"overrides": [
		{
			"files": ["**/*"],
			"env": {
				"es6": true,
				"node": true
			},
			"parserOptions": {
				"ecmaVersion": 2022,
				"sourceType": "module"
			}
		},
		{
			"files": ["./listeners.js"],
			"env": {
				"browser": true,
				"node": false
			},
			"globals": {
				"QUnit": false,
				"Symbol": false,
				"require": false
			},
			"parserOptions": {
				"ecmaVersion": 5,
				"sourceType": "script"
			},
			"rules": {
				"strict": ["error", "function"]
			}
		}
	]
}