File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11root = true
22
33# Steamcore .NET library editorconfig
4- # dotnet_library_editorconfig_version = 20
4+ # dotnet_library_editorconfig_version = 21
55
66[* ]
77charset = utf-8
@@ -124,6 +124,9 @@ dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case
124124
125125roslynator_accessibility_modifiers = explicit
126126
127+ # Avoid negative boolean comparison (e.g. 'if (foo?.bar != false)' instead of 'if (foo is not null && foo.bar)')
128+ roslynator_null_conditional_operator.avoid_negative_boolean_comparison = true
129+
127130# Prefer explicit/implicit object creation
128131roslynator_object_creation_type_style = implicit_when_type_is_obvious
129132
@@ -310,6 +313,9 @@ dotnet_diagnostic.IDE0130.severity = none
310313# CA1034: Do not nest types (disabled for now because it doesn't support extension members)
311314dotnet_diagnostic.CA1034.severity = none
312315
316+ # CA1708: Identifiers should differ by more than case
317+ dotnet_diagnostic.CA1708.severity = none
318+
313319# IDE0130: Namespace does not match folder structure
314320dotnet_diagnostic.IDE0130.severity = none
315321
You can’t perform that action at this time.
0 commit comments