11indent_style = space
2- indent_size = 4
2+ indent_size = 2
33
44[* .{cs,vb} ]
55# ### Naming styles ####
@@ -39,11 +39,6 @@ dotnet_naming_style.begins_with_i.required_suffix =
3939dotnet_naming_style.begins_with_i.word_separator =
4040dotnet_naming_style.begins_with_i.capitalization = pascal_case
4141
42- dotnet_naming_style.pascal_case.required_prefix =
43- dotnet_naming_style.pascal_case.required_suffix =
44- dotnet_naming_style.pascal_case.word_separator =
45- dotnet_naming_style.pascal_case.capitalization = pascal_case
46-
4742dotnet_naming_style.pascal_case.required_prefix =
4843dotnet_naming_style.pascal_case.required_suffix =
4944dotnet_naming_style.pascal_case.word_separator =
@@ -92,15 +87,15 @@ csharp_prefer_braces = true:suggestion
9287csharp_style_namespace_declarations = block_scoped:silent
9388csharp_style_prefer_method_group_conversion = true :silent
9489csharp_style_prefer_top_level_statements = false :silent
95- csharp_style_prefer_primary_constructors = false :suggestion
96- csharp_style_expression_bodied_methods = false : silent
97- csharp_style_expression_bodied_constructors = false : silent
98- csharp_style_expression_bodied_operators = false : silent
99- csharp_style_expression_bodied_properties = true : silent
100- csharp_style_expression_bodied_indexers = true : silent
101- csharp_style_expression_bodied_accessors = true : silent
102- csharp_style_expression_bodied_lambdas = true : silent
103- csharp_style_expression_bodied_local_functions = false : silent
90+ csharp_style_prefer_primary_constructors = true :suggestion
91+ csharp_style_expression_bodied_methods = when_on_single_line:suggestion
92+ csharp_style_expression_bodied_constructors = when_on_single_line:suggestion
93+ csharp_style_expression_bodied_operators = when_on_single_line:suggestion
94+ csharp_style_expression_bodied_properties = when_on_single_line:suggestion
95+ csharp_style_expression_bodied_indexers = when_on_single_line:suggestion
96+ csharp_style_expression_bodied_accessors = when_on_single_line:suggestion
97+ csharp_style_expression_bodied_lambdas = when_on_single_line:suggestion
98+ csharp_style_expression_bodied_local_functions = when_on_single_line:suggestion
10499csharp_style_throw_expression = true :suggestion
105100csharp_style_prefer_null_check_over_type_check = true :suggestion
106101csharp_prefer_simple_default_expression = true :suggestion
@@ -125,7 +120,7 @@ csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimenta
125120csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true :silent
126121csharp_style_conditional_delegate_call = true :suggestion
127122csharp_style_prefer_switch_expression = true :suggestion
128- csharp_style_prefer_pattern_matching = true :silent
123+ csharp_style_prefer_pattern_matching = true :suggestion
129124csharp_style_pattern_matching_over_is_with_cast_check = true :suggestion
130125csharp_style_pattern_matching_over_as_with_null_check = true :suggestion
131126csharp_style_prefer_not_pattern = true :suggestion
0 commit comments