eslint-config-uphold-react
v1.0.0
Published
Uphold-flavored React ESLint config
Readme
eslint-config-uphold-react
Uphold-flavored React ESLint config. Extends eslint-config-uphold.
Installation
$ npm install eslint eslint-config-uphold-react --save-devUsage
Create an .eslintrc.yml file with the following:
extends: uphold-reactAdd the following script to your package.json:
{
"scripts": {
"lint": "eslint ."
}
}and run the linter with:
$ npm run lint