1root = true
2[**]
3charset = utf-8  ; Implies no BOM.
4end_of_line = LF
5indent_style = space
6indent_size = 4
7insert_final_newline = true
8tab_width = 4
9
10; https://docs.microsoft.com/visualstudio/ide/editorconfig-code-style-settings-reference
11[*.cs]
12dotnet_sort_system_directives_first = true
13csharp_new_line_before_open_brace = accessors, anonymous_methods, control_blocks, events, indexers, local_functions, methods, properties, types
14csharp_new_line_before_else = true
15csharp_new_line_before_catch = true
16csharp_new_line_before_finally = true
17csharp_indent_case_contents = true
18csharp_indent_switch_labels = true
19csharp_space_after_cast = false
20csharp_space_after_keywords_in_control_flow_statements = true
21csharp_space_between_method_declaration_parameter_list_parentheses = false
22csharp_space_between_method_call_parameter_list_parentheses = false
23csharp_space_between_parentheses = false
24csharp_space_before_colon_in_inheritance_clause = true
25csharp_space_after_colon_in_inheritance_clause = true
26csharp_space_around_binary_operators = before_and_after
27csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
28csharp_space_between_method_call_name_and_opening_parenthesis = false
29csharp_space_between_method_call_empty_parameter_list_parentheses = false
30csharp_preserve_single_line_statements = true
31csharp_preserve_single_line_blocks = true
32