1.0.10 • Published 2 years ago

@tmware/eslint-config-typescript v1.0.10

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

@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/"
...