From 42af3190a183b8ad2c62d35b3176ba2b138256a6 Mon Sep 17 00:00:00 2001 From: Martin Costello Date: Thu, 13 Jun 2024 13:48:15 +0100 Subject: [PATCH] Disable IDE0058 Disable the IDE0058 style warning as it's creating lots of noise. --- .editorconfig | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.editorconfig b/.editorconfig index 756dd2f9..e02ed22a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -21,7 +21,11 @@ charset = utf-8-bom ############################### # .NET Coding Conventions # ############################### + [*.{cs,vb}] + +dotnet_diagnostic.IDE0058.severity = silent + # Organize usings dotnet_sort_system_directives_first = true