From 7321c9911b36552d5f319d952523fbadf0ce9c2c Mon Sep 17 00:00:00 2001 From: Cj <161484149+CJ-SPT@users.noreply.github.com> Date: Sat, 9 Aug 2025 23:13:14 -0400 Subject: [PATCH] Disable CA1822 "Member does not access instance data and can be made static" --- .editorconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.editorconfig b/.editorconfig index 5dbb6e0a..cc736e0c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -145,9 +145,11 @@ csharp_space_between_square_brackets = false # ReSharper properties resharper_wrap_object_and_collection_initializer_style = chop_always resharper_merge_into_pattern_highlighting = none +resharper_member_can_be_made_static_global_highlighting = none # Ignored warnings dotnet_diagnostic.CS1591.severity = none +dotnet_diagnostic.CA1822.severity = none # Xml project files [*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]