Seegno-flavored ESLint config.
$ npm install eslint babel-eslint eslint-plugin-babel eslint-config-seegno --save-dev
Create an .eslintrc
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