eslint-config-avraam
v1.0.0
Published
Eslint config to use for my projects
Downloads
18
Maintainers
Readme
eslint-config-avraam
To install
- Install shared config
npm install --save-dev eslint-config-avraam
. - Install peerDependencies
(
export PKG=eslint-config-avraam;
npm info "$PKG@latest" peerDependencies --json | command sed 's/[\{\},]//g ; s/: /@/g' | xargs npm install --save-dev "$PKG@latest"
)
- Create a
.eslintrc.js
file and make sure that it contains the following:
module.exports = {
"extends": "avraam",
"rules": {
"require-jsdoc": "warn"
}
}