We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c499d commit 5d02fafCopy full SHA for 5d02faf
src/features/diagnosticsProvider.ts
@@ -337,7 +337,7 @@ class DiagnosticsProvider extends AbstractSupport {
337
|| quickFix.Id == "CS0219" // CS0219: Unused variable
338
|| quickFix.Id == "CS8019"; // CS8019: Unnecessary using
339
340
- if (isFadeout && ['hidden', 'none'].includes(quickFix.LogLevel)) {
+ if (isFadeout && ['hidden', 'none'].includes(quickFix.LogLevel.toLowerCase())) {
341
// Theres no such thing as hidden severity in VSCode,
342
// however roslyn uses commonly analyzer with hidden to fade out things.
343
// Without this any of those doesn't fade anything in vscode.
0 commit comments