eslint-config-housecall
v1.0.0
Published
ESLint config based in recommended best practices at Housecall Pro
Downloads
337
Readme
ESLint (and Prettier) config
These are settings for ESLint and Prettier used by Housecall Pro and Codefied Inc.
What it does
This setup lints your JavaScript code based on best practices. Check the .eslintrc.js file to see what is included. Feel free to override the rules that make sense for you.
Installing
- In your project folder, run:
yarn install --dev eslint-config-housecall
npx install-peerdeps --dev eslint-config-housecall
- You will see several dependencies were installed. Now, create (or update) a
.eslintrc
file with the following content:
{
'extends': [
'housecall'
]
}
- (OPTIONAL) Copy the .prettierrc file from this repository into your project folder
This repository is inspired by eslint-config-wesbos.