2.0.2 • Published 5 years ago

@kripod/eslint-config-typescript v2.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

@kripod/eslint-config-typescript

Strict linter configuration for TypeScript.

Usage

After installing the package, append the following to your ESLint configuration:

{
  // Make sure to put it last, letting it override other configs
  "extends": "@kripod/eslint-config-typescript"
}

To enable additional rules requiring type checking, use the configuration below:

{
  // Please be aware that this may be slower to run
  "extends": [
    "@kripod/eslint-config-typescript",
    "@kripod/eslint-config-typescript/strict"
  ]
}