1.0.0 • Published 6 years ago

eslint-config-avraam v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

eslint-config-avraam

To install

  1. Install shared config npm install --save-dev eslint-config-avraam.
  2. 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"
)
  1. Create a .eslintrc.js file and make sure that it contains the following:
module.exports = {
  "extends": "avraam",
  "rules": {
    "require-jsdoc": "warn"
  }
}