{
	"env": {
		"node": true,
		"es6": true
	},
	"rules": {
		"arrow-parens": [2, "as-needed"],
		"no-console": [1],
		"no-constant-condition": [1],
		"no-extra-semi": [1],
		"no-func-assign": [1],
		"no-obj-calls": [2],
		"no-unexpected-multiline" : [2],
		"no-unneeded-ternary": [2],
		"radix": [2],
		"no-with": [2],
		"no-eval": [2],
		"no-unreachable": [1],
		"no-irregular-whitespace": [1],
		"no-new-wrappers": [2],
		"no-new-func": [2],
		"curly" : [2, "multi-line"],
		"no-implied-eval": [2],
		"no-invalid-this": [2],
		"constructor-super": [2],
		"no-dupe-args": [2],
		"no-dupe-keys": [2],
		"no-dupe-class-members": [2],
		"no-this-before-super": [2],
		"prefer-arrow-callback": [1],
		"no-var": [2],
		"valid-jsdoc": [1],
		"strict": [2, "global"],
		"callback-return": [1],
		"object-shorthand": [1, "methods"],
		"prefer-template": [1]
	}
}