How to Disable Error Highlighting in VS Code

How to disable error highlighting typescript code in vscode

Make sure you're using the correct TypeScript version in VSCode. Press Ctrl + Shift + P, then type and select "TypeScript: Select TypeScript version..." and select the latest version.

How to disable C++ error checking in VS Code?

Open up the command palette (CTRL + SHIFT + P) - > C/Cpp: Toggle Error Squiggles. This will disable all error warnings and highlighting.

Update: April 2020:
it is now called "c/c++: Disable Error Squiggles"

Disable wavy underline in VS Code

To disable wavy/squiggly underline in vscode, go to preferences and set underline color to fully transparent:

{
"workbench.colorCustomizations": {
"editorError.foreground": "#00000000",
"editorWarning.foreground": "#00000000",
"editorInfo.foreground": "#00000000"
}
}

Though it may be better to make underline color just less vibrant:

{
"workbench.colorCustomizations": {
"editorError.foreground": "#ff000088",
"editorWarning.foreground": "#ffe60033",
"editorInfo.foreground": "#00ff0088"
}
}


Related Topics



Leave a reply



Submit