0.0.12 • Published 2 years ago

@iunu-inc/eslint-config-typescript v0.0.12

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@iunu-inc/eslint-config-typescript

IUNU's Typescript eslint config

Usage

  1. Install this config plugin as a dev dependency.

    npm i -D @iunu-inc/eslint-config-typescript
  2. 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'
  3. You might want to add some ignorePatterns to not lint your transpiled JS.

    ignorePatterns:
        - '/out'