2.3.2 • Published 2 years ago
eslint-config-impact-market v2.3.2
eslint-config-impact-market
impactMarket ESLint config
Covers
- React
- Node
- Typescript
Installation
add eslint-config-impact-market to your package.json
Usage
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