Update editorconfig.

This commit is contained in:
2024-04-30 13:40:53 +01:00
parent 279fffc3c0
commit b3e17cd858

View File

@@ -24,26 +24,74 @@ csharp_style_var_elsewhere
csharp_style_var_for_built_in_types = false:suggestion csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion csharp_style_var_when_type_is_apparent = true:suggestion
csharp_using_directive_placement = outside_namespace:silent csharp_using_directive_placement = outside_namespace:silent
dotnet_naming_rule.private_constants_rule.import_to_resharper = as_predefined dotnet_naming_rule.constants_rule.import_to_resharper = True
dotnet_naming_rule.constants_rule.resharper_description = Constant fields (not private)
dotnet_naming_rule.constants_rule.resharper_guid = 669e5282-fb4b-4e90-91e7-07d269d04b60
dotnet_naming_rule.constants_rule.severity = warning
dotnet_naming_rule.constants_rule.style = upper_camel_case_style
dotnet_naming_rule.constants_rule.symbols = constants_symbols
dotnet_naming_rule.private_constants_rule.import_to_resharper = True
dotnet_naming_rule.private_constants_rule.resharper_description = Constant fields (private)
dotnet_naming_rule.private_constants_rule.resharper_guid = 236f7aa5-7b06-43ca-bf2a-9b31bfcff09a
dotnet_naming_rule.private_constants_rule.severity = warning dotnet_naming_rule.private_constants_rule.severity = warning
dotnet_naming_rule.private_constants_rule.style = all_upper_style dotnet_naming_rule.private_constants_rule.style = all_upper_style
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
dotnet_naming_rule.public_static_fields_rule.import_to_resharper = True
dotnet_naming_rule.public_static_fields_rule.resharper_description = Static fields (not private)
dotnet_naming_rule.public_static_fields_rule.resharper_guid = 70345118-4b40-4ece-937c-bbeb7a0b2e70
dotnet_naming_rule.public_static_fields_rule.severity = warning
dotnet_naming_rule.public_static_fields_rule.style = lower_camel_case_style_1
dotnet_naming_rule.public_static_fields_rule.symbols = public_static_fields_symbols
dotnet_naming_rule.static_readonly_rule.import_to_resharper = True
dotnet_naming_rule.static_readonly_rule.resharper_description = Static readonly fields (not private)
dotnet_naming_rule.static_readonly_rule.resharper_guid = c873eafb-d57f-481d-8c93-77f6863c2f88
dotnet_naming_rule.static_readonly_rule.severity = warning
dotnet_naming_rule.static_readonly_rule.style = upper_camel_case_style
dotnet_naming_rule.static_readonly_rule.symbols = static_readonly_symbols
dotnet_naming_rule.unity_serialized_field_rule.import_to_resharper = True dotnet_naming_rule.unity_serialized_field_rule.import_to_resharper = True
dotnet_naming_rule.unity_serialized_field_rule.resharper_description = Unity serialized field dotnet_naming_rule.unity_serialized_field_rule.resharper_description = Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef dotnet_naming_rule.unity_serialized_field_rule.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule.severity = warning dotnet_naming_rule.unity_serialized_field_rule.severity = warning
dotnet_naming_rule.unity_serialized_field_rule.style = lower_camel_case_style dotnet_naming_rule.unity_serialized_field_rule.style = lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule.symbols = unity_serialized_field_symbols dotnet_naming_rule.unity_serialized_field_rule.symbols = unity_serialized_field_symbols
dotnet_naming_rule.unity_serialized_field_rule_1.import_to_resharper = True
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_description = Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_guid = 5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule_1.severity = warning
dotnet_naming_rule.unity_serialized_field_rule_1.style = lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule_1.symbols = unity_serialized_field_symbols_1
dotnet_naming_style.all_upper_style.capitalization = all_upper dotnet_naming_style.all_upper_style.capitalization = all_upper
dotnet_naming_style.all_upper_style.word_separator = _ dotnet_naming_style.all_upper_style.word_separator = _
dotnet_naming_style.lower_camel_case_style.capitalization = camel_case dotnet_naming_style.lower_camel_case_style.capitalization = camel_case
dotnet_naming_style.lower_camel_case_style_1.capitalization = camel_case
dotnet_naming_style.lower_camel_case_style_1.required_prefix = _
dotnet_naming_style.upper_camel_case_style.capitalization = pascal_case
dotnet_naming_symbols.constants_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.constants_symbols.applicable_kinds = field
dotnet_naming_symbols.constants_symbols.required_modifiers = const
dotnet_naming_symbols.constants_symbols.resharper_applicable_kinds = constant_field
dotnet_naming_symbols.constants_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field
dotnet_naming_symbols.private_constants_symbols.required_modifiers = const dotnet_naming_symbols.private_constants_symbols.required_modifiers = const
dotnet_naming_symbols.public_static_fields_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.public_static_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.public_static_fields_symbols.required_modifiers = static
dotnet_naming_symbols.public_static_fields_symbols.resharper_applicable_kinds = field
dotnet_naming_symbols.public_static_fields_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.static_readonly_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.static_readonly_symbols.required_modifiers = readonly, static
dotnet_naming_symbols.static_readonly_symbols.resharper_applicable_kinds = readonly_field
dotnet_naming_symbols.static_readonly_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities = * dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities = *
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds = dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds =
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds = unity_serialised_field dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds = unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers = instance dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers = instance
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_accessibilities = *
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_kinds =
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_applicable_kinds = unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_required_modifiers = instance
dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:warning dotnet_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:warning
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:warning dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:warning
@@ -89,6 +137,7 @@ resharper_braces_for_ifelse
resharper_braces_for_while = required_for_multiline resharper_braces_for_while = required_for_multiline
resharper_builtin_type_apply_to_native_integer = false resharper_builtin_type_apply_to_native_integer = false
resharper_constructor_or_destructor_body = expression_body resharper_constructor_or_destructor_body = expression_body
resharper_continuous_indent_multiplier = 1
resharper_cpp_allow_comment_after_lbrace = true resharper_cpp_allow_comment_after_lbrace = true
resharper_cpp_keep_blank_lines_in_code = 1 resharper_cpp_keep_blank_lines_in_code = 1
resharper_cpp_keep_blank_lines_in_declarations = 1 resharper_cpp_keep_blank_lines_in_declarations = 1
@@ -96,6 +145,7 @@ resharper_cpp_keep_user_linebreaks
resharper_cpp_wrap_parameters_style = chop_if_long resharper_cpp_wrap_parameters_style = chop_if_long
resharper_csharp_align_first_arg_by_paren = true resharper_csharp_align_first_arg_by_paren = true
resharper_csharp_blank_lines_around_field = 0 resharper_csharp_blank_lines_around_field = 0
resharper_csharp_continuous_indent_multiplier = 1
resharper_csharp_empty_block_style = together_same_line resharper_csharp_empty_block_style = together_same_line
resharper_csharp_int_align_fix_in_adjacent = true resharper_csharp_int_align_fix_in_adjacent = true
resharper_csharp_place_comments_at_first_column = true resharper_csharp_place_comments_at_first_column = true
@@ -152,6 +202,7 @@ resharper_linkage_specification_braces
resharper_linkage_specification_indentation = all resharper_linkage_specification_indentation = all
resharper_local_function_body = expression_body resharper_local_function_body = expression_body
resharper_max_enum_members_on_line = 1 resharper_max_enum_members_on_line = 1
resharper_max_initializer_elements_on_line = 1
resharper_member_initializer_list_style = on_single_line resharper_member_initializer_list_style = on_single_line
resharper_method_or_operator_body = expression_body resharper_method_or_operator_body = expression_body
resharper_nested_ternary_style = expanded resharper_nested_ternary_style = expanded
@@ -188,6 +239,8 @@ resharper_space_before_template_params
resharper_space_within_empty_braces = false resharper_space_within_empty_braces = false
resharper_toplevel_function_declaration_return_type_style = on_single_line resharper_toplevel_function_declaration_return_type_style = on_single_line
resharper_toplevel_function_definition_return_type_style = on_single_line resharper_toplevel_function_definition_return_type_style = on_single_line
resharper_use_continuous_indent_inside_initializer_braces = false
resharper_use_continuous_indent_inside_parens = false
resharper_use_indent_from_vs = false resharper_use_indent_from_vs = false
resharper_wrap_after_dot_in_method_calls = false resharper_wrap_after_dot_in_method_calls = false
resharper_wrap_base_clause_style = chop_if_long resharper_wrap_base_clause_style = chop_if_long
@@ -331,6 +384,7 @@ resharper_invoke_as_extension_method_highlighting
resharper_join_declaration_and_initializer_highlighting = warning resharper_join_declaration_and_initializer_highlighting = warning
resharper_join_null_check_with_usage_highlighting = warning resharper_join_null_check_with_usage_highlighting = warning
resharper_lambda_expression_must_be_static_highlighting = warning resharper_lambda_expression_must_be_static_highlighting = warning
resharper_localizable_element_highlighting = error
resharper_local_function_can_be_made_static_highlighting = warning resharper_local_function_can_be_made_static_highlighting = warning
resharper_loop_can_be_converted_to_query_highlighting = warning resharper_loop_can_be_converted_to_query_highlighting = warning
resharper_loop_can_be_partly_converted_to_query_highlighting = warning resharper_loop_can_be_partly_converted_to_query_highlighting = warning
@@ -378,6 +432,7 @@ resharper_property_can_be_made_init_only_global_highlighting
resharper_property_can_be_made_init_only_local_highlighting = warning resharper_property_can_be_made_init_only_local_highlighting = warning
resharper_public_constructor_in_abstract_class_highlighting = warning resharper_public_constructor_in_abstract_class_highlighting = warning
resharper_raw_string_can_be_simplified_highlighting = warning resharper_raw_string_can_be_simplified_highlighting = warning
resharper_razor_assembly_not_resolved_highlighting = warning
resharper_redundant_accessor_body_highlighting = warning resharper_redundant_accessor_body_highlighting = warning
resharper_redundant_always_match_subpattern_highlighting = warning resharper_redundant_always_match_subpattern_highlighting = warning
resharper_redundant_array_creation_expression_highlighting = warning resharper_redundant_array_creation_expression_highlighting = warning
@@ -1392,3 +1447,8 @@ indent_style = space
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
tab_width = 4 tab_width = 4
[*.{appxmanifest,asax,ascx,aspx,axaml,build,c,c++,c++m,cc,ccm,cginc,compute,cp,cpp,cppm,cs,cshtml,cu,cuh,cxx,cxxm,dtd,fs,fsi,fsscript,fsx,fx,fxh,h,hh,hlsl,hlsli,hlslinc,hpp,hxx,inc,inl,ino,ipp,ixx,master,ml,mli,mpp,mq4,mq5,mqh,mxx,nuspec,paml,razor,resw,resx,shader,skin,tpp,usf,ush,uxml,vb,xaml,xamlx,xoml,xsd}]
indent_style = space
indent_size = 4
tab_width = 4