.editorconfig 694 B

123456789101112131415161718
  1. [*.cs]
  2. indent_style = tab
  3. tab_width = 8
  4. csharp_new_line_before_open_brace = methods,local_functions
  5. csharp_new_line_before_else = false
  6. csharp_new_line_before_catch = false
  7. csharp_new_line_before_finally = false
  8. csharp_indent_case_contents = true
  9. csharp_indent_switch_labels = false
  10. csharp_indent_labels = flush_left
  11. csharp_space_after_keywords_in_control_flow_statements = true
  12. csharp_space_between_method_declaration_parameter_list_parentheses = false
  13. csharp_space_between_method_call_parameter_list_parentheses = false
  14. csharp_preserve_single_line_blocks = true
  15. dotnet_style_require_accessibility_modifiers = never
  16. csharp_style_var_when_type_is_apparent = true
  17. csharp_prefer_braces = false