eslint-config-standards
v1.0.0
Published
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)
Downloads
740
Maintainers
Readme
eslint-config-standard
Features
- with prettier support, thanks to eslint-plugin-prettier
Installation
The default export contains all default Airbnb ESLint rules, including ECMAScript 6+, and the ones listed below. It requires some peerDependencies as well.
Install the package with
npm install eslint-config-standard --save-dev
# or
yarn add eslint-config-standard -D
Then install the correct versions of each peerDependency package, which are listed by the command:
npm info "eslint-config-standard@latest" peerDependencies
If using npm 5+, use this shortcut:
npx install-peerdeps --dev eslint-config-standard
# or
yarn add eslint-config-standard -D --peer
Usage
Now add the config to either your package.json
:
{
"eslintConfig": {
"extends": "eslint-config-standard"
}
}
to your .eslintrc
:
{
"extends": "eslint-config-standard"
}
or .eslintrc.js
:
module.exports = {
extends: 'eslint-config-standard',
}
Assumptions
This ESLint configuration comes with some fundamental assumptions:
- browser and/or node environment
- parser: babel (used babel-eslint parser)