My issue with VSCODE is that it displays warnings as if they were errors, particularly linter warnings.
https://i.sstatic.net/RuaWV.png
I am trying to customize the underline color for linter warnings. I attempted to modify my settings.json
by adding the following configuration:
"workbench.colorCustomizations": {
"editorError.foreground": "#ff0000",
"editorWarning.foreground": "#ffc400",
"editorInfo.foreground": "#35ffab"
},
However, it appears that VSCODE is treating these warnings as errors instead of warnings.