2.3.2 • Published 7 months ago

eslint-config-impact-market v2.3.2

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
7 months ago

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