From 371bbd8ff136a1ece698ce417d150008aaa7cf1b Mon Sep 17 00:00:00 2001 From: JustArchi Date: Thu, 6 May 2021 15:28:24 +0200 Subject: [PATCH] .editorconfig update --- .editorconfig | 157 +++++++++++++++++++++++++++++++++++++------------- 1 file changed, 117 insertions(+), 40 deletions(-) diff --git a/.editorconfig b/.editorconfig index e6c4029ff..9321065c5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,6 +6,7 @@ root = true [*] charset = utf-8 +# TODO: file_header_template indent_style = tab insert_final_newline = true trim_trailing_whitespace = true @@ -15,65 +16,141 @@ trim_trailing_whitespace = true ############################### [*.cs] -csharp_new_line_before_catch = false -csharp_new_line_before_else = false -csharp_new_line_before_finally = false -csharp_new_line_before_members_in_anonymous_types = false -csharp_new_line_before_members_in_object_initializers = false -csharp_new_line_before_open_brace = none -csharp_new_line_between_query_expression_clauses = false +csharp_indent_block_contents = true:warning +csharp_indent_braces = false:warning +csharp_indent_case_contents = true:warning +csharp_indent_case_contents_when_block = false:warning +csharp_indent_labels = flush_left:warning +csharp_indent_switch_labels = true:warning -csharp_prefer_braces = true:suggestion +csharp_new_line_before_catch = false:warning +csharp_new_line_before_else = false:warning +csharp_new_line_before_finally = false:warning +csharp_new_line_before_members_in_anonymous_types = false:warning +csharp_new_line_before_members_in_object_initializers = false:warning +csharp_new_line_before_open_brace = none:warning +csharp_new_line_between_query_expression_clauses = false:warning -csharp_preferred_modifier_order = public,protected,internal,private,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion +csharp_prefer_braces = true:warning +csharp_prefer_simple_default_expression = true:warning +csharp_prefer_simple_using_statement = true:warning +csharp_prefer_static_local_function = true:warning -csharp_preserve_single_line_statements = false +csharp_preferred_modifier_order = public,protected,internal,private,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning -csharp_space_after_cast = true +csharp_preserve_single_line_blocks = true:warning +csharp_preserve_single_line_statements = false:warning -csharp_style_expression_bodied_accessors = true:suggestion -csharp_style_expression_bodied_constructors = true:suggestion -csharp_style_expression_bodied_indexers = true:suggestion -csharp_style_expression_bodied_methods = true:suggestion -csharp_style_expression_bodied_operators = true:suggestion -csharp_style_expression_bodied_properties = true:suggestion +csharp_space_after_cast = true:warning +csharp_space_after_colon_in_inheritance_clause = true:warning +csharp_space_after_comma = true:warning +csharp_space_after_dot = false:warning +csharp_space_after_keywords_in_control_flow_statements = true:warning +csharp_space_after_semicolon_in_for_statement = true:warning +csharp_space_around_binary_operators = before_and_after:warning +csharp_space_around_declaration_statements = false:warning +csharp_space_before_colon_in_inheritance_clause = true:warning +csharp_space_before_comma = false:warning +csharp_space_before_dot = false:warning +csharp_space_before_open_square_brackets = false:warning +csharp_space_before_semicolon_in_for_statement = false:warning +csharp_space_between_empty_square_brackets = false:warning +csharp_space_between_method_call_empty_parameter_list_parentheses = false:warning +csharp_space_between_method_call_name_and_opening_parenthesis = false:warning +csharp_space_between_method_call_parameter_list_parentheses = false:warning +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false:warning +csharp_space_between_method_declaration_name_and_open_parenthesis = false:warning +csharp_space_between_method_declaration_parameter_list_parentheses = false:warning +csharp_space_between_parentheses = none:warning +csharp_space_between_square_brackets = false:warning -csharp_style_var_elsewhere = false:suggestion -csharp_style_var_for_built_in_types = false:suggestion -csharp_style_var_when_type_is_apparent = false:suggestion +csharp_style_conditional_delegate_call = true:warning +csharp_style_deconstructed_variable_declaration = true:warning -csharp_using_directive_placement = outside_namespace:suggestion +csharp_style_expression_bodied_accessors = true:warning +csharp_style_expression_bodied_constructors = true:warning +csharp_style_expression_bodied_indexers = true:warning +csharp_style_expression_bodied_lambdas = true:warning +csharp_style_expression_bodied_local_functions = true:warning +csharp_style_expression_bodied_methods = true:warning +csharp_style_expression_bodied_operators = true:warning +csharp_style_expression_bodied_properties = true:warning + +csharp_style_implicit_object_creation_when_type_is_apparent = true:warning +csharp_style_inlined_variable_declaration = true:warning + +csharp_style_pattern_local_over_anonymous_function = true:warning +csharp_style_pattern_matching_over_is_with_cast_check = true:warning +csharp_style_pattern_matching_over_as_with_null_check = true:warning + +csharp_style_prefer_index_operator = true:warning +csharp_style_prefer_not_pattern = true:warning +csharp_style_prefer_pattern_matching = true:warning +csharp_style_prefer_range_operator = true:warning +csharp_style_prefer_switch_expression = true:warning + +csharp_style_throw_expression = true:warning + +csharp_style_unused_value_assignment_preference = discard_variable :warning +csharp_style_unused_value_expression_statement_preference = discard_variable:warning + +csharp_style_var_elsewhere = false:warning +csharp_style_var_for_built_in_types = false:warning +csharp_style_var_when_type_is_apparent = false:warning + +csharp_using_directive_placement = outside_namespace:warning [*.{cs,vb}] +dotnet_code_quality_unused_parameters = all:warning + # PascalCase for naming everything but parameters -dotnet_naming_rule.all_members_must_be_capitalized.severity = suggestion +dotnet_naming_rule.all_members_must_be_capitalized.severity = warning dotnet_naming_rule.all_members_must_be_capitalized.style = all_symbols dotnet_naming_rule.all_members_must_be_capitalized.symbols = all_symbols dotnet_naming_style.all_symbols.capitalization = pascal_case dotnet_naming_symbols.all_symbols.applicable_accessibilities = * -dotnet_naming_symbols.all_symbols.applicable_kinds = class,struct,interface,enum,property,method,field,event,delegate +dotnet_naming_symbols.all_symbols.applicable_kinds = namespace,class,struct,interface,enum,property,method,field,event,delegate,type_parameter,local_function # camelCase for naming parameters -dotnet_naming_rule.parameters_must_be_camel_case.severity = suggestion +dotnet_naming_rule.parameters_must_be_camel_case.severity = warning dotnet_naming_rule.parameters_must_be_camel_case.style = params dotnet_naming_rule.parameters_must_be_camel_case.symbols = params dotnet_naming_style.params.capitalization = camel_case dotnet_naming_symbols.params.applicable_accessibilities = * -dotnet_naming_symbols.params.applicable_kinds = parameter +dotnet_naming_symbols.params.applicable_kinds = parameter,local -dotnet_sort_system_directives_first = true:suggestion +dotnet_remove_unnecessary_suppression_exclusions = none:warning +dotnet_separate_import_directive_groups = false:warning +dotnet_sort_system_directives_first = true:warning -dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion -dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion -dotnet_style_parentheses_in_other_operators = never_if_unnecessary:suggestion -dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion -dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion -dotnet_style_predefined_type_for_member_access = true:suggestion -dotnet_style_prefer_auto_properties = true:suggestion -dotnet_style_prefer_conditional_expression_over_assignment = true:suggestion -dotnet_style_prefer_conditional_expression_over_return = false: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 = always:suggestion +dotnet_style_coalesce_expression = true:warning +dotnet_style_collection_initializer = true:warning +dotnet_style_explicit_tuple_names = true:warning +dotnet_style_null_propagation = true:warning +dotnet_style_object_initializer = true:warning + +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:warning +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning +dotnet_style_parentheses_in_other_operators = never_if_unnecessary:warning +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:warning + +dotnet_style_predefined_type_for_locals_parameters_members = true:warning +dotnet_style_predefined_type_for_member_access = true:warning + +dotnet_style_prefer_auto_properties = true:warning +dotnet_style_prefer_compound_assignment = true:warning +dotnet_style_prefer_conditional_expression_over_assignment = true:warning +dotnet_style_prefer_conditional_expression_over_return = true:warning +dotnet_style_prefer_inferred_anonymous_type_member_names = true:warning +dotnet_style_prefer_inferred_tuple_names = true:warning +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:warning +dotnet_style_prefer_simplified_boolean_expressions = true:warning +dotnet_style_prefer_simplified_interpolation = true:warning + +dotnet_style_qualification_for_event = false:warning +dotnet_style_qualification_for_field = false:warning +dotnet_style_qualification_for_method = false:warning +dotnet_style_qualification_for_property = false:warning + +dotnet_style_readonly_field = true:warning +dotnet_style_require_accessibility_modifiers = always:warning