0.9.0 • Published 4 years ago

@scottrudiger/eslint-config v0.9.0

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

@scottrudiger/eslint-config

An eslint config with my subjective tastes, built atop eslint-config-airbnb-base.

Feel free to try it out. Maybe you'll like it!

Usage

Install it (and peer dependencies):

npm install --save-dev @scottrudiger/eslint-config eslint eslint-plugin-import

Use it:

(in .eslintrc.js)

module.exports = {
  extends: '@scottrudiger'
};

(in .eslintrc.yaml or .eslintrc.yml)

extends: @scottrudiger

(in .eslintrc.json or .eslintrc)

{
  "extends": "@scottrudiger"
}

(in package.json)

{
  "eslintConfig": {"extends": "@scottrudiger"}
}