{
	"root": true,

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

	"plugins": [
		"smarter-tabs"
	],

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

	"extends": "eslint:recommended",

	"rules": {
		"no-mixed-spaces-and-tabs":  ["warn", "smart-tabs"],
		"smarter-tabs/smarter-tabs": "warn"
	},

	"overrides": [{
		"files": ["test/*.test.js"],
		"env": {
			"mocha": true
		}
	}]
}
