From d6dd426bf20e4e6a1f62bef9f3d3a6a76d72704e Mon Sep 17 00:00:00 2001 From: cynic Date: Sun, 29 Mar 2020 17:30:29 +0200 Subject: [PATCH] Small code style update --- .editorconfig | 41 +++++++++++++++++++++++++++++------------ 1 file changed, 29 insertions(+), 12 deletions(-) diff --git a/.editorconfig b/.editorconfig index 346bba956..a4a38f40c 100644 --- a/.editorconfig +++ b/.editorconfig @@ -19,16 +19,19 @@ csharp_new_line_before_members_in_object_initializers=false csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion csharp_space_after_cast=false csharp_space_around_binary_operators=before_and_after -csharp_style_var_elsewhere=true:hint -csharp_style_var_for_built_in_types=true:hint -csharp_style_var_when_type_is_apparent=true:hint -dotnet_style_predefined_type_for_locals_parameters_members=true:hint -dotnet_style_predefined_type_for_member_access=true:hint -dotnet_style_qualification_for_event=false:hint -dotnet_style_qualification_for_field=false:hint -dotnet_style_qualification_for_method=false:hint -dotnet_style_qualification_for_property=false:hint -dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint +csharp_style_var_elsewhere=true:suggestion +csharp_style_var_for_built_in_types=true:suggestion +csharp_style_var_when_type_is_apparent=true:suggestion +dotnet_style_parentheses_in_arithmetic_binary_operators=never_if_unnecessary:none +dotnet_style_parentheses_in_other_binary_operators=never_if_unnecessary:none +dotnet_style_parentheses_in_relational_binary_operators=never_if_unnecessary:none +dotnet_style_predefined_type_for_locals_parameters_members=true:suggestion +dotnet_style_predefined_type_for_member_access=true:suggestion +dotnet_style_qualification_for_event=false:suggestion +dotnet_style_qualification_for_field=false:suggestion +dotnet_style_qualification_for_method=false:suggestion +dotnet_style_qualification_for_property=false:suggestion +dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion # ReSharper properties resharper_align_first_arg_by_paren=true @@ -59,15 +62,16 @@ resharper_indent_preprocessor_if=usual_indent resharper_indent_preprocessor_other=usual_indent resharper_indent_statement_pars=outside resharper_indent_typeparam_angles=outside +resharper_initializer_braces=next_line_shifted_2 resharper_int_align_switch_expressions=true resharper_int_align_switch_sections=true resharper_keep_existing_declaration_parens_arrangement=false resharper_new_line_before_while=true resharper_outdent_commas=true resharper_outdent_dots=true -resharper_place_attribute_on_same_line=False +resharper_place_attribute_on_same_line=false resharper_place_simple_accessorholder_on_single_line=true -resharper_place_simple_embedded_statement_on_same_line=False +resharper_place_simple_embedded_statement_on_same_line=false resharper_space_around_multiplicative_op=false resharper_space_within_single_line_array_initializer_braces=true resharper_use_indent_from_vs=false @@ -75,7 +79,16 @@ resharper_wrap_before_binary_opsign=false resharper_wrap_lines=true # ReSharper inspection severities +resharper_arrange_redundant_parentheses_highlighting=hint +resharper_arrange_this_qualifier_highlighting=hint +resharper_arrange_type_member_modifiers_highlighting=hint +resharper_arrange_type_modifiers_highlighting=hint +resharper_built_in_type_reference_style_for_member_access_highlighting=hint +resharper_built_in_type_reference_style_highlighting=hint resharper_redundant_base_qualifier_highlighting=warning +resharper_suggest_var_or_type_built_in_types_highlighting=hint +resharper_suggest_var_or_type_elsewhere_highlighting=hint +resharper_suggest_var_or_type_simple_types_highlighting=hint resharper_web_config_module_not_resolved_highlighting=warning resharper_web_config_type_not_resolved_highlighting=warning resharper_web_config_wrong_module_highlighting=warning @@ -152,3 +165,7 @@ ij_xml_line_comment_at_first_column=true indent_style=space indent_size=4 tab_width=4 + +[*.json] +indent_style=space +indent_size=2