.editorconfig 917 B

1234567891011121314151617181920212223
  1. [*.cs]
  2. indent_style = tab
  3. indent_size = 8
  4. tab_width = 8
  5. csharp_new_line_before_open_brace = methods,local_functions
  6. csharp_new_line_before_else = false
  7. csharp_new_line_before_catch = false
  8. csharp_new_line_before_finally = false
  9. end_of_line = crlf
  10. csharp_indent_case_contents = true
  11. csharp_indent_switch_labels = false
  12. csharp_indent_labels = flush_left
  13. csharp_space_after_keywords_in_control_flow_statements = true
  14. csharp_space_between_method_declaration_parameter_list_parentheses = false
  15. csharp_space_between_method_call_parameter_list_parentheses = false
  16. csharp_preserve_single_line_blocks = true
  17. dotnet_style_require_accessibility_modifiers = never
  18. csharp_style_var_when_type_is_apparent = true
  19. csharp_prefer_braces = false
  20. csharp_space_before_open_square_brackets = true
  21. csharp_space_between_method_call_name_and_opening_parenthesis = true
  22. csharp_space_between_method_declaration_name_and_open_parenthesis = true