An opinionated eslint config.
npm install @smartlinkdev/eslint-config

1. Add this package to your devDependencies
``bash`
$ npm i -D @smartlinkdev/eslint-configor
$ yarn add -D @smartlinkdev/eslint-config
2. Install eslint if not already present locally or globally
`bash`
$ npm i -D eslintor
$ yarn add -D eslint
3. Create a .eslintrc.js file`bash`
$ touch .eslintrc.js
4. Extend using the plugin
`js`
{
extends: [
'@smartlinkdev/eslint-config'
]
}
A full example .eslintrc.js:
`js``
module.exports = {
root: true,
extends: [
'@smartlinkdev/eslint-config'
]
}
MIT license - Smartlink Ventures, Inc.