We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd6a21 commit 934e794Copy full SHA for 934e794
.editorconfig
@@ -95,6 +95,11 @@ dotnet_style_prefer_inferred_tuple_names = true:warning
95
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning
96
csharp_style_implicit_object_creation_when_type_is_apparent = true:warning
97
98
+# Disable 'Use collection expression for fluent (IDE0305)'. The rationale is that it's that collection
99
+# expressions can be hard to read when having sequences of multiple chained fluent invocations (eg. LINQ).
100
+# See: https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0305.
101
+dotnet_style_prefer_collection_expression = false
102
+
103
# Field preferences
104
dotnet_style_readonly_field = true:warning
105
0 commit comments