2.0.0 • Published 4 years ago

@averjs/eslint-config-typescript v2.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

Averjs ESlint config

ESlint config for averjs.

Usage

Install the package

$ yarn add --dev @averjs/eslint-config
#or
$ npm i -D @averjs/eslint-config

Extend the config in your eslintrc file

{
  "extends": [
    "@averjs"
  ]
}

Typescript

If you are using typescript, install the typescript package instead of the normal eslint-config.

$ yarn add --dev @averjs/eslint-config-typescript
#or
$ npm i -D @averjs/eslint-config-typescript

Extend the config in your eslintrc file

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