aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: b45e772c32c28d766efbd04b03f32074570e9140 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
	"extends": [
		"wikimedia/client",
		"wikimedia/jquery",
		"wikimedia/mediawiki",
		"wikimedia/jsduck"
	],
	"globals": {
		"require": "readonly",
		"module": "readonly"
	},
	"rules": {
		"max-len": "off",
		"no-jquery/no-global-selector": "off",
		"no-shadow": "error"
	}
}