summaryrefslogtreecommitdiffstats
path: root/.eslintrc.json
blob: 1d44c69947a22054e60b2a1b5acce538fc954aba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
	"extends": "eslint:recommended",
	"env": {
		"commonjs": true,
		"es6": true,
		"node": true
	},
	"parserOptions": {
		"ecmaVersion": 2018
	},
	"ignorePatterns": [
		"node_modules"
	],
	"rules": {
		"no-unused-vars": "off"
	}
}