From d5abb0b9ff4aa7646cdfb895fa7d19f6868e452b Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Wed, 29 Nov 2023 18:00:21 -0700 Subject: [PATCH] - Ignore pre-formatted string suggestion in .NET 8.0 --- style_guides/csharp/.editorconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/style_guides/csharp/.editorconfig b/style_guides/csharp/.editorconfig index c311a605..d5485e92 100644 --- a/style_guides/csharp/.editorconfig +++ b/style_guides/csharp/.editorconfig @@ -672,3 +672,5 @@ dotnet_diagnostic.CA1014.severity = none dotnet_diagnostic.CA1822.severity = none ### Properties should not return arrays dotnet_diagnostic.CA1819.severity = none +### Use pre-formatted strings in .NET 8.0 +dotnet_diagnostic.CA1863.severity = none