From e387b690c2c36b76468a4d6cf3fa3465581f0c06 Mon Sep 17 00:00:00 2001 From: James Groom Date: Sat, 23 Dec 2023 12:23:16 +1000 Subject: [PATCH] Mute IDE0056 and IDE0057 for now these are using the `Index` and `Range` syntaxes, respectively --- .editorconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.editorconfig b/.editorconfig index de87d7b5b4..dc501fa7b9 100644 --- a/.editorconfig +++ b/.editorconfig @@ -61,9 +61,9 @@ dotnet_diagnostic.IDE0052.severity = silent # TODO: should be warning imo, but t # Use compound assignment dotnet_diagnostic.IDE0054.severity = warning # Use index operator -dotnet_diagnostic.IDE0056.severity = warning +dotnet_diagnostic.IDE0056.severity = suggestion # Use range operator -dotnet_diagnostic.IDE0057.severity = warning +dotnet_diagnostic.IDE0057.severity = suggestion # Use simple using statement dotnet_diagnostic.IDE0063.severity = suggestion # Make struct fields writable