Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 719 Bytes

README.md

File metadata and controls

42 lines (29 loc) · 719 Bytes

eslint-config-untile-react

Untile-flavored React ESLint config. Extends eslint-config-untile.

Installation

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

Usage

Create an .eslintrc.yml file with the following:

extends: @untile/eslint-config-untile-react

Add the following script to your package.json:

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

and run the linter with:

$ npm run lint

Releases

Be sure to have configured NPM_TOKEN in your globals.

npm version [<new version> | major | minor | patch] -m "Release %s"
git push origin master && git push --tags