Skip to content

Instantly share code, notes, and snippets.

@przbadu
Last active October 24, 2017 03:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save przbadu/d2ff86802d120069f789e7a6349b43e6 to your computer and use it in GitHub Desktop.
Save przbadu/d2ff86802d120069f789e7a6349b43e6 to your computer and use it in GitHub Desktop.
tslint with prettier

Install and configure tslint and prettier

yarn global add tslint typescript
tslint --init
yarn add prettier --dev --exact
npm i -D tslint-config-prettier

tslint.json

{
  "extends": [
    "tslint:latest",
    "tslint-config-prettier"
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment