FEO ESLint config
Installation
$ npm install --save-dev @studiohyperdrive/eslint-config
Usage
Create an .eslintrc.js
file in the root of your project and extend the default ESLint settings. You will also need to extend the es5 or es6 settings (based on your project):
module.exports = {
"extends": [
"@studiohyperdrive/eslint-config",
"@studiohyperdrive/eslint-config/lib/es5.js" // Pick one
"@studiohyperdrive/eslint-config/lib/es6.js" // Pick one
]
}