From 1b699dd9a80b733c102e12c9e772a5cfb224c8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20R=C3=B8nne=20Petersen?= Date: Wed, 15 Nov 2023 10:06:21 +0100 Subject: [PATCH] Fix sorting in .globalconfig. --- .globalconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.globalconfig b/.globalconfig index b2d2b8f..32a3705 100644 --- a/.globalconfig +++ b/.globalconfig @@ -58,7 +58,6 @@ csharp_style_namespace_declarations = file_scoped csharp_style_pattern_matching_over_as_with_null_check = true csharp_style_pattern_matching_over_is_with_cast_check = true csharp_style_prefer_extended_property_pattern = true -dotnet_style_prefer_foreach_explicit_cast_in_source = always csharp_style_prefer_index_operator = true csharp_style_prefer_local_over_anonymous_function = true csharp_style_prefer_method_group_conversion = true @@ -99,6 +98,7 @@ dotnet_style_prefer_auto_properties = true dotnet_style_prefer_compound_assignment = true dotnet_style_prefer_conditional_expression_over_assignment = true dotnet_style_prefer_conditional_expression_over_return = true +dotnet_style_prefer_foreach_explicit_cast_in_source = always dotnet_style_prefer_inferred_anonymous_type_member_names = true dotnet_style_prefer_inferred_tuple_names = true dotnet_style_prefer_is_null_check_over_reference_equality_method = true