Uphold-flavored React ESLint config. Extends eslint-config-uphold.
$ npm install eslint eslint-config-uphold-react --save-devCreate 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