Я использую Visual Studio 2019 с файлом конфигурации редактора для форматирования. У меня есть несколько файлов ресурсов для переводов, которые генерируются автоматически через Visual Studio.
Я бы хотел исключить эти файлы из любого форматирования, но, похоже, это невозможно, так как editorconfig не поддерживает это напрямую. https://github.com/editorconfig/editorconfig/issues/228
У меня теперь есть раздел в конфигурации моего редактора, который просто игнорирует все форматирование для файлов * Designer.cs
[*.Designer.cs]
charset = none
end_of_line = none
insert_final_newline = none
trim_trailing_whitespace = false
tab_width = none
indent_style = none
indent_size = none
# New line preferences
csharp_new_line_before_catch = none
csharp_new_line_before_else = none
csharp_new_line_before_finally = none
csharp_new_line_before_members_in_anonymous_types = none
csharp_new_line_before_members_in_object_initializers = none
csharp_new_line_before_open_brace = none
csharp_new_line_between_query_expression_clauses = none
# Indentation preferences
csharp_indent_block_contents = none
csharp_indent_braces = none
csharp_indent_case_contents = none
csharp_indent_case_contents_when_block = none
csharp_indent_labels = none
csharp_indent_switch_labels = none
# Space preferences
csharp_space_after_cast = none
csharp_space_after_colon_in_inheritance_clause = none
csharp_space_after_comma = none
csharp_space_after_dot = none
csharp_space_after_keywords_in_control_flow_statements = none
csharp_space_after_semicolon_in_for_statement = none
csharp_space_around_binary_operators = none
csharp_space_around_declaration_statements = none
csharp_space_before_colon_in_inheritance_clause = none
csharp_space_before_comma = none
csharp_space_before_dot = none
csharp_space_before_open_square_brackets = none
csharp_space_before_semicolon_in_for_statement = none
csharp_space_between_empty_square_brackets = none
csharp_space_between_method_call_empty_parameter_list_parentheses = none
csharp_space_between_method_call_name_and_opening_parenthesis = none
csharp_space_between_method_call_parameter_list_parentheses = none
csharp_space_between_method_declaration_empty_parameter_list_parentheses = none
csharp_space_between_method_declaration_name_and_open_parenthesis = none
csharp_space_between_method_declaration_parameter_list_parentheses = none
csharp_space_between_parentheses = none
csharp_space_between_square_brackets = none
# Wrapping preferences
csharp_preserve_single_line_blocks = none
csharp_preserve_single_line_statements = none
end_of_line = none
insert_final_newline = none
В большинстве случаев вышеуказанная конфигурация работает, но естьэто один случай, когда файлы Designer.cs все еще отформатированы. Он заменяет отступ (табуляцию) на строках, которые в противном случае пусты.
Любые подсказки, как я могу исключить это из форматирования?