Package detail

@kripod/eslint-config-typescript

kripod1MITdeprecated2.0.2

Use @kripod/eslint-config instead.

Strict linter configuration for TypeScript.

readme

@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"
  ]
}