rlucio_chavos
rlucio_chavos

Reputation: 31

How to disable vscode's errorlens extension warning?

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

Answers (1)

Please open the command pallet in VS Code and type errorLens.toggleWarning.

Source: Error lens Extension in VS Code Marketplace

Upvotes: 1

Related Questions