@@ -8,6 +8,43 @@ root = true
88indent_style = space
99
1010[* .cs ]
11+
12+ # ReSharper properties
13+
14+ # Blank lines
15+ resharper_blank_lines_after_control_transfer_statements = 1
16+ resharper_blank_lines_after_multiline_statements = 1
17+ resharper_blank_lines_around_single_line_auto_property = 1
18+ resharper_blank_lines_around_single_line_local_method = 1
19+ resharper_blank_lines_around_single_line_property = 1
20+ resharper_blank_lines_before_block_statements = 1
21+ resharper_blank_lines_before_control_transfer_statements = 1
22+ resharper_blank_lines_before_multiline_statements = 1
23+ resharper_blank_lines_before_single_line_comment = 1
24+
25+ # Baces
26+ resharper_braces_for_for = required
27+ resharper_braces_for_foreach = required
28+ resharper_braces_for_ifelse = required
29+ resharper_braces_for_while = required
30+ resharper_braces_redundant = false
31+ resharper_indent_nested_fixed_stmt = true
32+ resharper_indent_nested_foreach_stmt = true
33+ resharper_indent_nested_for_stmt = true
34+ resharper_indent_nested_lock_stmt = true
35+ resharper_indent_nested_usings_stmt = true
36+ resharper_indent_nested_while_stmt = true
37+ resharper_max_enum_members_on_line = 1
38+
39+ resharper_csharp_force_attribute_style =separate
40+ resharper_csharp_method_or_operator_body =expression_body
41+ resharper_csharp_max_enum_members_on_line =1
42+ resharper_csharp_place_attribute_on_same_line =false
43+ resharper_csharp_wrap_object_and_collection_initializer_style =chop_always
44+ resharper_csharp_use_heuristics_for_body_style =true
45+
46+ resharper_csharp_max_initializer_elements_on_line =0
47+
1148# Microsoft .NET properties
1249csharp_preferred_modifier_order = public, private, protected, internal, new, static, abstract, virtual, sealed, readonly, override, extern, unsafe, volatile, async:suggestion
1350csharp_style_var_elsewhere = true :suggestion
@@ -181,79 +218,6 @@ dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
181218dotnet_style_predefined_type_for_member_access = true :suggestion
182219dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
183220
184- # ReSharper properties
185- # resharper_arguments_anonymous_function = named
186- # resharper_arguments_literal = named
187- # resharper_arguments_named = named
188- # resharper_arguments_other = named
189- # resharper_arguments_string_literal = named
190- resharper_blank_lines_after_control_transfer_statements = 1
191- resharper_blank_lines_after_multiline_statements = 1
192- resharper_blank_lines_around_single_line_auto_property = 1
193- resharper_blank_lines_around_single_line_local_method = 1
194- resharper_blank_lines_around_single_line_property = 1
195- resharper_blank_lines_before_block_statements = 1
196- resharper_blank_lines_before_control_transfer_statements = 1
197- resharper_blank_lines_before_multiline_statements = 1
198- resharper_blank_lines_before_single_line_comment = 1
199- resharper_braces_for_for = required
200- resharper_braces_for_foreach = required
201- resharper_braces_for_ifelse = required
202- resharper_braces_for_while = required
203- resharper_braces_redundant = false
204- resharper_case_block_braces = next_line_shifted_2
205- resharper_csharp_blank_lines_around_single_line_invocable = 1
206- resharper_csharp_keep_blank_lines_in_code = 1
207- resharper_csharp_keep_blank_lines_in_declarations = 1
208- resharper_csharp_wrap_after_declaration_lpar = true
209- resharper_csharp_wrap_extends_list_style = chop_if_long
210- resharper_csharp_wrap_parameters_style = chop_if_long
211- resharper_indent_nested_fixed_stmt = true
212- resharper_indent_nested_foreach_stmt = true
213- resharper_indent_nested_for_stmt = true
214- resharper_indent_nested_lock_stmt = true
215- resharper_indent_nested_usings_stmt = true
216- resharper_indent_nested_while_stmt = true
217- resharper_keep_existing_declaration_block_arrangement = true
218- resharper_keep_existing_declaration_parens_arrangement = false
219- resharper_keep_existing_embedded_block_arrangement = true
220- resharper_keep_existing_enum_arrangement = true
221- resharper_keep_existing_expr_member_arrangement = false
222- resharper_keep_existing_initializer_arrangement = false
223- resharper_local_function_body = expression_body
224- resharper_max_enum_members_on_line = 1
225- resharper_max_formal_parameters_on_line = 4
226- resharper_place_field_attribute_on_same_line = if_owner_is_single_line
227- resharper_space_within_single_line_array_initializer_braces = false
228- resharper_trailing_comma_in_multiline_lists = true
229- resharper_use_heuristics_for_body_style = false
230- resharper_use_indent_from_vs = false
231- resharper_wrap_before_eq = true
232- resharper_wrap_before_first_type_parameter_constraint = true
233-
234- # ReSharper inspection severities
235- resharper_arrange_accessor_owner_body_highlighting = none
236- resharper_arrange_local_function_body_highlighting = suggestion
237- resharper_arrange_namespace_body_highlighting = suggestion
238- resharper_arrange_redundant_parentheses_highlighting = hint
239- resharper_arrange_this_qualifier_highlighting = none
240- resharper_arrange_type_member_modifiers_highlighting = hint
241- resharper_arrange_type_modifiers_highlighting = hint
242- resharper_built_in_type_reference_style_for_member_access_highlighting = suggestion
243- resharper_built_in_type_reference_style_highlighting = suggestion
244- resharper_inconsistent_naming_highlighting = suggestion
245- resharper_redundant_base_qualifier_highlighting = none
246- resharper_suggest_var_or_type_built_in_types_highlighting = suggestion
247- resharper_suggest_var_or_type_elsewhere_highlighting = suggestion
248- resharper_suggest_var_or_type_simple_types_highlighting = suggestion
249-
250- resharper_csharp_force_attribute_style =separate
251- resharper_csharp_method_or_operator_body =expression_body
252- resharper_csharp_max_enum_members_on_line =1
253- resharper_csharp_place_attribute_on_same_line =false
254- resharper_csharp_wrap_object_and_collection_initializer_style =chop_always
255- resharper_csharp_use_heuristics_for_body_style =true
256-
257221# Standard properties
258222insert_final_newline = true
259223# (Please don't specify an indent_size here; that has too many unintended consequences.)
0 commit comments