Seegno-flavored ESLint config.
$ npm install eslint eslint-config-seegno --save-dev
Create an .eslintrc.yml
file with the following:
extends: seegno
Add the following script
to your package.json
:
{
"scripts": {
"lint": "eslint ."
}
}
and run the linter with:
$ npm run lint