@makeheadway/eslint-config
v1.0.0
Published
Custom Headway ESLint configuration
Downloads
2
Readme
@makeheadway/eslint-config
Custom Headway ESLint configuration. Based on Airbnb configuration with some changes. Includes Prettier erroring.
Installing
Using NPM
npm install --save-dev eslint @makeheadway/eslint-config;
Using Yarn
yarn add --dev eslint @makeheadway/eslint-config;
Setting config
By hands
Add the following in .eslintrc
:
{
"extends": [..., "@makeheadway/eslint-config"],
...
}
Or use the following command, if you does not have ESLint
yet:
By command
echo "{ \"extends\": [\"@makeheadway/eslint-config\"] }" > .eslintrc;