impactMarket ESLint config
- React
- Node
- Typescript
add eslint-config-impact-market
to your package.json
Create an .eslintrc.js
file with the following:
module.exports = {
extends: ['impact-market/node', 'prettier'],
};
Add the following script
to your package.json
:
{
"scripts": {
"lint": "eslint ."
}
}
and run the linter with:
$ yarn lint