eslint-config-wesm87-base
This package provides Airbnb's base JS .eslintrc as an extensible shared config.
Usage
We export two ESLint configurations for your usage.
eslint-config-wesm87-base
Our default export contains all of our ESLint rules, including ECMAScript 6+. It requires eslint
and eslint-plugin-import
.
- Ensure packages are installed with correct version numbers by running:
Which produces and runs a command like:
npm install --save-dev eslint-config-wesm87-base eslint@^#.#.# eslint-plugin-import@^#.#.#
- Add
"extends": "airbnb-base"
to your .eslintrc
eslint-config-wesm87-base/legacy
Lints ES5 and below. Requires eslint
and eslint-plugin-import
.
- Ensure packages are installed with correct version numbers by running:
Which produces and runs a command like:
npm install --save-dev eslint-config-wesm87-base eslint@^3.0.1 eslint-plugin-import@^1.10.3
- Add
"extends": "airbnb-base/legacy"
to your .eslintrc
See Airbnb's overarching ESLint config, Airbnb's Javascript styleguide, and the ESlint config docs for more information.
Improving this config
Consider adding test cases if you're making complicated rules changes, like anything involving regexes. Perhaps in a distant future, we could use literate programming to structure our README as test cases for our .eslintrc?
You can run tests with npm test
.
You can make sure this module lints with itself using npm run lint
.