Skip to content

Commit

Permalink
Downgrade severity of field naming violation
Browse files Browse the repository at this point in the history
Existing fields are being marked as Errors because they violate the
naming standards established in .editorconfig. But since the names
already exist, and changing some would be a breaking change, better to
relax the setting to "suggestion" instead of "error".
  • Loading branch information
joshuaflanagan committed Jun 26, 2024
1 parent e83729a commit f20d97c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ dotnet_naming_rule.types_should_be_pascal_case.severity = error
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = error
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

Expand Down

0 comments on commit f20d97c

Please sign in to comment.