1.0.6 • Published 2 years ago

@releaseband/eslint-config-typescript v1.0.6

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

@releaseband/eslint-config-typescript

eslint shareable config

Installing

npm i -D @releaseband/eslint-config-typescript
npx install-peerdeps --dev @releaseband/eslint-config-typescript

create .eslintrc.json file in the root project folder:

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

create .eslintignore file in the root project folder:

node_modules/
.idea/
.vscode/
.history/

add script in package.json:

{
  "scripts": {
    "lint": "eslint --ext .js,.ts --fix ."
  }
}