From 59bdac9d1c72c222af6d2f47aa1f8dff5472c912 Mon Sep 17 00:00:00 2001 From: nwithan8 Date: Thu, 30 Nov 2023 12:54:33 -0700 Subject: [PATCH] - Ignore more .NET 8.0 specific rules --- style_guides/csharp/.editorconfig | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/style_guides/csharp/.editorconfig b/style_guides/csharp/.editorconfig index d5485e92..6fccfa13 100644 --- a/style_guides/csharp/.editorconfig +++ b/style_guides/csharp/.editorconfig @@ -674,3 +674,8 @@ dotnet_diagnostic.CA1822.severity = none dotnet_diagnostic.CA1819.severity = none ### Use pre-formatted strings in .NET 8.0 dotnet_diagnostic.CA1863.severity = none +### Use primary constructors in .NET 8.0 +dotnet_diagnostic.IDE0290.severity = none +### Use collection initializers in .NET 8.0 +dotnet_diagnostic.IDE0028.severity = none +dotnet_diagnostic.IDE0305.severity = none