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