Skip to content

Instantly share code, notes, and snippets.

@raftheunis87
Last active March 2, 2021 15:17
Show Gist options
  • Save raftheunis87/705d4132f1588cc64d132fd9c403460c to your computer and use it in GitHub Desktop.
Save raftheunis87/705d4132f1588cc64d132fd9c403460c to your computer and use it in GitHub Desktop.
Setting up TSLint on VS Code with Airbnb TypeScript Style Guide
  1. cd coding-directory
  2. npm init -y
  3. npm install --save-dev tslint tslint-config-airbnb
  4. Create tslint.json file with following content:
{
    "extends": "tslint-config-airbnb"
}
  1. Install TSLint plugin in Visual Studio Code
  2. Restart Visual Studio Code
@mainarthur
Copy link

TSLint is deprecated.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment