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