Reputation: 31
I want to disable errorlens's waring enter image description here
I tried like this
"workbench.colorCustomizations": {
// "editorError.border": "#fff0",
// "editorError.foreground": "#fff0",
"editorWarning.border": "#fff0",
"editorWarning.foreground": "#fff0",
"editorWarning.background": "#fff0",
"errorLens.warningBackground": "#fff0",
"errorLens.warningForeground": "#fff0"
// ...
}
but it dooesn't work...
How to disable vscode's errorlens extension warning?
Upvotes: 3
Views: 3559
Reputation: 1801
Please open the command pallet in VS Code and type errorLens.toggleWarning
.
Source: Error lens Extension in VS Code Marketplace
Upvotes: 1