@tmware/eslint-config-typescript
v1.0.10
Published
eslint config for tmware typescript projects
Readme
@tmware/eslint-config-typescript 
ESLint config for my TypeScript projects.
Installation
yarn add @tmware/eslint-config-typescript eslint --devnpm i @tmware/eslint-config-typescript eslint --save-devUsage
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/"
...