1.0.0 • Published 5 years ago

eslint-config-uphold-react v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

eslint-config-uphold-react

Uphold-flavored React ESLint config. Extends eslint-config-uphold.

Installation

$ npm install eslint eslint-config-uphold-react --save-dev

Usage

Create an .eslintrc.yml file with the following:

extends: uphold-react

Add the following script to your package.json:

{
  "scripts": {
    "lint": "eslint ."
  }
}

and run the linter with:

$ npm run lint