How to disable TSLint in VS Code?

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.