aboutsummaryrefslogtreecommitdiffstats
path: root/dist/.eslintrc.json
blob: bf60c4c18e7276fbeedf1847260bfb077d63e94d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"root": true,

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

	"parserOptions": {
		"ecmaVersion": 5,
		"sourceType": "script"
	},

	"rules": {
		// That is okay for the built version
		"no-multiple-empty-lines": "off"
	},

	"globals": {
		"define": false,
		"module": true,
		"Symbol": false
	}
}