Skip to content
This repository has been archived by the owner on Oct 5, 2023. It is now read-only.

TMWare/eslint-config-typescript

Repository files navigation

@tmware/eslint-config-typescript NPM

ESLint config for my TypeScript projects.

Installation

yarn add @tmware/eslint-config-typescript eslint --dev
npm i @tmware/eslint-config-typescript eslint --save-dev

Usage

To use the ESLint config, add the following to your .eslintrc:

{
  "extends": ["@tmware/eslint-config-typescript"]
}

Lint script for package.json

...
"lint": "eslint --ext .js,.ts --ignore-path .gitignore src/"
...