Untile-flavored React ESLint config. Extends eslint-config-untile.
$ npm install eslint @untile/eslint-config-untile-react --save-devCreate an .eslintrc.yml file with the following:
extends: @untile/eslint-config-untile-reactAdd the following script to your package.json:
{
"scripts": {
"lint": "eslint ."
}
}and run the linter with:
$ npm run lintBe 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