Categories
TypeScript Answers

How to disable TSLint in VS Code?

Spread the love

Sometimes, we want to disable TSLint in VS Code.

In this article, we’ll look at how to disable TSLint in VS Code.

How to disable TSLint in VS Code?

To disable TSLint in VS Code, we can set the "typescript.validate.enable" setting to false in our VS Code settings.json file.

To do this, we write

{
  //...
  "typescript.validate.enable": false
  //...
}

to set "typescript.validate.enable" to false in settings.json to disable TSLint.

Conclusion

To disable TSLint in VS Code, we can set the "typescript.validate.enable" setting to false in our VS Code settings.json file.

By John Au-Yeung

Web developer specializing in React, Vue, and front end development.

Leave a Reply

Your email address will not be published. Required fields are marked *