@iunu-inc/eslint-config-typescript
v0.0.12
Published
IUNU's Typescript ESLint config
Downloads
3
Readme
@iunu-inc/eslint-config-typescript
IUNU's Typescript eslint config
Usage
Install this config plugin as a dev dependency.
npm i -D @iunu-inc/eslint-config-typescript
Add the plugin to your
eslintrc
.You'll also want to have another eslint config for your environment. In this example, we'll use the node one (which you'll need to install separately).
extends: - '@iunu-inc/node' - '@iunu-inc/typescript'
You might want to add some
ignorePatterns
to not lint your transpiled JS.ignorePatterns: - '/out'