.editorconfig 632 B

123456789101112131415
  1. root = true
  2. [*]
  3. charset = utf-8-bom
  4. insert_final_newline = true
  5. trim_trailing_whitespace = true
  6. # CSharp code style settings:
  7. [*.cs]
  8. indent_size = 3
  9. csharp_space_between_method_call_parameter_list_parentheses = true
  10. csharp_space_between_method_declaration_parameter_list_parentheses = true
  11. csharp_space_between_square_brackets = true
  12. csharp_space_after_keywords_in_control_flow_statements = false
  13. csharp_space_between_parentheses = control_flow_statements, expressions