From 4dc4fe786849cf4de28062385a21fde0e3bd7683 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Thu, 16 Oct 2025 01:41:48 +0100 Subject: [PATCH] Enable IDE0080: RemoveConfusingSuppressionForIsExpression https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0080 --- .globalconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.globalconfig b/.globalconfig index b125f70e254..eea4ae9583a 100644 --- a/.globalconfig +++ b/.globalconfig @@ -1454,7 +1454,7 @@ dotnet_diagnostic.IDE0079.severity = silent # IDE0080: RemoveConfusingSuppressionForIsExpression # https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0080 -dotnet_diagnostic.IDE0080.severity = silent +dotnet_diagnostic.IDE0080.severity = warning # IDE0081: RemoveUnnecessaryByVal # https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0081