phindle / error-lens

Visual Studio Code extension which enhances the display of errors and warnings.
https://marketplace.visualstudio.com/items?itemName=PhilHindle.errorlens
MIT License
89 stars 40 forks source link

How to disable vscode's errorlens extension warning? #40

Closed Lay4U closed 3 years ago

Lay4U commented 3 years ago

I want to display only error statement... and

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?