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