Skip to content

Commit 06d869d

Browse files
Initial Commit
0 parents  commit 06d869d

16 files changed

Lines changed: 821 additions & 0 deletions

.editorconfig

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
root = true
2+
3+
[*.cs]
4+
indent_style = space
5+
indent_size = 4
6+
7+
# https://kent-boogaart.com/blog/editorconfig-reference-for-c-developers
8+
9+
csharp_indent_block_contents = true
10+
csharp_indent_case_contents = true
11+
csharp_indent_labels = no_change
12+
csharp_indent_switch_labels = true
13+
csharp_new_line_before_catch = false
14+
csharp_new_line_before_else = false
15+
csharp_new_line_before_finally = false
16+
csharp_new_line_before_members_in_anonymous_types = true
17+
csharp_new_line_before_members_in_object_initializers = true
18+
csharp_new_line_before_open_brace = none
19+
csharp_prefer_braces = false:silent
20+
csharp_prefer_simple_default_expression = true:warning
21+
csharp_preserve_single_line_blocks = true
22+
csharp_preserve_single_line_statements = false
23+
csharp_space_after_cast = true
24+
csharp_space_after_colon_in_inheritance_clause = true
25+
csharp_space_after_comma = true
26+
csharp_space_after_dot = false
27+
csharp_space_after_keywords_in_control_flow_statements = true
28+
csharp_space_after_semicolon_in_for_statement = true
29+
csharp_space_around_binary_operators = before_and_after
30+
csharp_space_around_declaration_statements = do_not_ignore
31+
csharp_space_before_colon_in_inheritance_clause = true
32+
csharp_space_before_comma = false
33+
csharp_space_before_dot = false
34+
csharp_space_before_open_square_brackets = false
35+
csharp_space_before_semicolon_in_for_statement = false
36+
csharp_space_between_empty_square_brackets = false
37+
csharp_space_between_method_call_empty_parameter_list_parentheses = false
38+
csharp_space_between_method_call_name_and_opening_parenthesis = false
39+
csharp_space_between_method_call_parameter_list_parentheses = false
40+
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
41+
csharp_space_between_method_declaration_name_and_open_parenthesis = false
42+
csharp_space_between_method_declaration_parameter_list_parentheses = false
43+
csharp_space_between_parentheses = false
44+
csharp_space_between_square_brackets = false
45+
csharp_style_conditional_delegate_call = true:warning
46+
csharp_style_expression_bodied_accessors = when_on_single_line:suggestion
47+
csharp_style_expression_bodied_constructors = false:silent
48+
csharp_style_expression_bodied_indexers = true:suggestion
49+
csharp_style_expression_bodied_methods = false:silent
50+
csharp_style_expression_bodied_operators = true:suggestion
51+
csharp_style_expression_bodied_properties = true:suggestion
52+
csharp_style_inlined_variable_declaration = true:warning
53+
csharp_style_pattern_matching_over_as_with_null_check = true:warning
54+
csharp_style_pattern_matching_over_is_with_cast_check = true:warning
55+
csharp_style_throw_expression = true:warning
56+
csharp_style_var_elsewhere = false:warning
57+
csharp_style_var_for_built_in_types = false:warning
58+
csharp_style_var_when_type_is_apparent = false:silent
59+
dotnet_sort_system_directives_first = false
60+
dotnet_style_coalesce_expression = true:warning
61+
dotnet_style_collection_initializer = true:suggestion
62+
dotnet_style_explicit_tuple_names = true:suggestion
63+
dotnet_style_null_propagation = true:suggestion
64+
dotnet_style_object_initializer = true:silent
65+
dotnet_style_predefined_type_for_locals_parameters_members = true:warning
66+
dotnet_style_predefined_type_for_member_access = true:warning
67+
dotnet_style_qualification_for_event = false:warning
68+
dotnet_style_qualification_for_field = false:warning
69+
dotnet_style_qualification_for_method = false:warning
70+
dotnet_style_qualification_for_property = false:warning

0 commit comments

Comments
 (0)