chore: Remove some of the warnings/suggestions that can't be fixed due to legacy (#1953)

This commit is contained in:
Derek Gooding 2024-09-13 15:22:50 -04:00 committed by GitHub
parent 8639ed2210
commit aaac0c596c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -135,6 +135,18 @@ dotnet_style_qualification_for_field=false:suggestion
dotnet_style_qualification_for_method=false:suggestion
dotnet_style_qualification_for_property=false:suggestion
dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion
# Added by Derek
dotnet_diagnostic.IDE0022.severity = none # expression bodies
dotnet_diagnostic.IDE0130.severity = none # namespace not matching file location
dotnet_diagnostic.IDE0290.severity = none # primary constructors
dotnet_diagnostic.IDE1006.severity = none # naming violations with "_"
dotnet_diagnostic.IDE0038.severity = none # pattern matching
dotnet_diagnostic.IDE0008.severity = none # using var
# probably should be ruled var or not var across the board but it's just suggestions anyway.
# Leave this here in case we want to turn it on in the future
# csharp_style_var_for_built_in_types = true:suggestion # suggest using var (implied) variables
# csharp_style_var_when_type_is_apparent = true:suggestion # suggest using var (implied) variables
# csharp_style_var_elsewhere = true:suggestion # suggest using var (implied) variables
# ReSharper properties
resharper_apply_auto_detected_rules=false