1.0.0 • Published 2 years ago

@untile/eslint-config-untile-react v1.0.0

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

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