From 2bec7313d7895892477771351a6b24e98903cbaf Mon Sep 17 00:00:00 2001 From: Bart Koelman <10324372+bkoelman@users.noreply.github.com> Date: Wed, 25 Sep 2024 04:05:54 +0200 Subject: [PATCH] Turn off crashing analyzer --- .editorconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.editorconfig b/.editorconfig index 37fda299f..296d4c7dc 100644 --- a/.editorconfig +++ b/.editorconfig @@ -160,6 +160,9 @@ dotnet_diagnostic.JSON002.severity = silent # CA1062: Validate arguments of public methods dotnet_code_quality.CA1062.excluded_symbol_names = Accept|DefaultVisit|Visit*|Apply* +# Turn off crashing analyzer, https://github.com/dotnet/roslyn-analyzers/issues/7421 +dotnet_diagnostic.CA2263.severity = none + #### .NET Naming Style #### dotnet_diagnostic.IDE1006.severity = warning