aboutsummaryrefslogtreecommitdiffstats
path: root/test/.eslintrc.json
blob: f5a3fa591f8a39d64374e59bfe3ffbde8de8f3db (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
	"root": true,

	"extends": "../.eslintrc-browser.json",

	"env": {

		// In source the browser env is not enabled but unit tests rely on them
		// too much and we don't run them in non-browser environments anyway.
		"browser": true
	},

	"globals": {
		"require": false,
		"Promise": false,
		"Symbol": false,
		"QUnit": false,
		"ajaxTest": false,
		"testIframe": false,
		"createDashboardXML": false,
		"createWithFriesXML": false,
		"createXMLFragment": false,
		"moduleTeardown": false,
		"url": false,
		"q": false,
		"jQuery": true,
		"sinon": true,
		"amdDefined": true,
		"fireNative": true,
		"Globals": true,
		"hasPHP": true,
		"isLocal": true,
		"supportjQuery": true,
		"originaljQuery": true,
		"$": true,
		"original$": true,
		"baseURL": true,
		"externalHost": true
	},

	"rules": {
		// See https://github.com/eslint/eslint/issues/2342
		"no-unused-vars": "off",

		// Too many errors
		"max-len": "off",
		"brace-style": "off",
		"key-spacing": "off",
		"camelcase": "off",
		"strict": "off",

		// Not really too many - waiting for autofix features for these rules
		"lines-around-comment": "off",
		"dot-notation": "off"
	},

	"overrides": [
		{
			"files": [
				"data/core/jquery-iterability-transpiled-es6.js",
				"data/testinit-jsdom.js"
			],
			"parserOptions": {
				"ecmaVersion": 2015
			}
		},

		{
			"files": [
				"jquery.js",
				"data/testinit.js"
			],
			"parserOptions": {
				"ecmaVersion": 2020
			}
		}
	]
}