aboutsummaryrefslogtreecommitdiffstats
path: root/src/.eslintrc.json
blob: 8b0b90f16ef72c0f76207ebeee10c01573f45124 (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
{
	"root": true,

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

	"parserOptions": {
		"ecmaVersion": 2015,
		"sourceType": "module"
	},

	"plugins": [ "import" ],

	"rules": {
		"import/extensions": [ "error", "always" ],
		"import/no-cycle": "error",
		"indent": [ "error", "tab", {
			"outerIIFEBody": 0
		} ]
	},

	"overrides": [
		{
			"files": "wrapper.js",
			"parserOptions": {
				"ecmaVersion": 5,
				"sourceType": "script"
			},
			"rules": {
				"no-unused-vars": "off",
				"indent": [ "error", "tab", {

					// Unlike other codes, "wrapper.js" is implemented in UMD.
					// So it required a specific exception for jQuery's UMD
					// Code Style. This makes that indentation check is not
					// performed for 1 depth of outer FunctionExpressions
					"ignoredNodes": [
						"Program > ExpressionStatement > CallExpression > :last-child > *"
					]
				} ]
			},
			"globals": {
				"jQuery": false,
				"module": true
			}
		},

		{
			"files": "exports/amd.js",
			"globals": {
				"define": false
			}
		},

		{
			"files": "core.js",
			"globals": {

				// Defining Symbol globally would create a danger of using
				// it unguarded in another place, it seems safer to define
				// it only for this module.
				"Symbol": false
			}
		}
	]
}