1.0.0 • Published 6 years ago
eslint-config-standards v1.0.0
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 -DThen install the correct versions of each peerDependency package, which are listed by the command:
npm info "eslint-config-standard@latest" peerDependenciesIf using npm 5+, use this shortcut:
npx install-peerdeps --dev eslint-config-standard
# or
yarn add eslint-config-standard -D --peerUsage
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)
LICENCE
Maintainers
1.0.0
6 years ago