2.0.1 • Published 9 months ago

@untile/eslint-config-react v2.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

Installation

With npm:

npm install eslint @untile/eslint-config-react --save-dev

Or using yarn:

yarn add eslint @untile/eslint-config-react -D

Setup

Create an .eslintrc.js file with the following:

extends: ['@untile/eslint-config-react']

Usage

Add the following script to your package.json:

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

and run the linter with:

yarn lint