My VSCODE shows warnings as if they were errors (specifically linter warnings).
I want linter warnings to show with different unerline color. I tried modifying my settings.json adding the following configuration
"workbench.colorCustomizations": {
"editorError.foreground": "#ff0000",
"editorWarning.foreground": "#ffc400",
"editorInfo.foreground": "#35ffab"
},
But it seems like VSCODE thinks that those are not warnings but errors


