1.0.12 • Published 1 year ago

@kushki/eslint-config v1.0.12

Weekly downloads
1
License
Apache 2.0
Repository
github
Last release
1 year ago

Kushki ESLint config

Kushki ESLint configuration file for NodeJS projects written in TypeScript and using prettier. It is the ESLint equivalent for @kushki/tslint config file.

Installation

First, install this module running:

npm install @kushki/eslint-config --save-dev

Then, create a .eslintrc.js file:

module.exports = {
  "extends": ["@kushki"],
}

Usage

In your package.json file, add a script:

{
  "lint:check": "npx eslint --ext=ts src"
}