@untile/eslint-config-typescript
v2.0.1
Published
Untile-flavored ESLint config typescript
Downloads
430
Readme
Installation
With npm
:
npm install eslint @untile/eslint-config-typescript --save-dev
Or using yarn
:
yarn add eslint @untile/eslint-config-typescript -D
Setup
Create an .eslintrc.js
file with the following:
extends: ['@untile/eslint-config-typescript']
Usage
Add the following script
to your package.json
:
{
"scripts": {
"lint": "eslint ."
}
}
and run the linter with:
yarn lint