aboutsummaryrefslogtreecommitdiffstats
path: root/test/.eslintrc
blob: 744de89ec3adb42561cd273a42cb5b2886011234 (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
{
	"env": {
		"browser": true
	},
	// Support: IE <=9 only, Android <=4.0 only
	// The above browsers are failing a lot of tests in the ES5
	// test suite at http://test262.ecmascript.org.
	"parserOptions": {
		"ecmaVersion": 3
	},
	"globals": {
		"require": false,
		"define": false,
		"DOMParser": false,
		"JSON": false,
		"Promise": false,
		"Symbol": false,
		"QUnit": false,
		"ajaxTest": false,
		"testIframe": false,
		"testIframeWithCallback": false,
		"iframeCallback": true,
		"createDashboardXML": false,
		"createXMLFragment": false,
		"moduleTeardown": false,
		"testFoo": false,
		"url": false,
		"t": 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 much errors
		"max-len": "off",
		"brace-style": "off",
		"key-spacing": "off",
		"camelcase": "off",

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