aboutsummaryrefslogtreecommitdiffstats
path: root/test/.jshintrc
blob: f92ff88cd7b3b79b8a160ab47bbed42616c0c841 (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
{
	"boss": true,
	"curly": true,
	"eqeqeq": true,
	"eqnull": true,
	"expr": true,
	"immed": true,
	"noarg": true,
	"onevar": true,
	"quotmark": "double",
	"smarttabs": true,
	"trailing": true,
	"undef": true,
	"unused": true,

	"evil": true,
	"sub": true,

	"browser": true,
	"devel": true,
	"wsh": true,

	"globals": {
		"DOMParser": true,
		"jQuery": true,
		"QUnit": true,
		"module": true,
		"ok": true,
		"equal": true,
		"test": true,
		"asyncTest": true,
		"notEqual": true,
		"deepEqual": true,
		"strictEqual": true,
		"notStrictEqual": true,
		"start": true,
		"stop": true,
		"expect": true,
		"raises": true,
		"ajaxTest": true,
		"testIframe": true,
		"testIframeWithCallback": true,
		"createDashboardXML": true,
		"createXMLFragment": true,
		"moduleTeardown": true,
		"testFoo": true,
		"url": true,
		"t": true,
		"q": true,
		"amdDefined": true,
		"fireNative": true,
		"Globals": true,
		"hasPHP": true,
		"isLocal": true,
		"originaljQuery": true,
		"$": true,
		"original$": true,
		"externalHost": true
	}
}