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

	"extends": "jquery",

	"reportUnusedDisableDirectives": true,

	"parserOptions": {
		"ecmaVersion": 2017
	},

	"env": {
		"es6": true,
		"node": true
	},

	"rules": {
		"strict": ["error", "global"]
	}
}