Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove warnings/suggestions #1953

Merged
merged 1 commit into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading