This repository has been archived by the owner on Nov 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
53 lines (49 loc) · 2.05 KB
/
.editorconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.cs]
indent_style = space
indent_size = 4
csharp_style_var_for_built_in_types = false
csharp_style_var_when_type_is_apparent = true
csharp_style_var_elsewhere = true
dotnet_style_object_initializer = true
csharp_style_inlined_variable_declaration = true
csharp_style_pattern_matching_over_as_with_null_check = true
csharp_style_pattern_matching_over_is_with_cast_check = true
csharp_style_expression_bodied_methods = true
csharp_style_expression_bodied_constructors = false
csharp_style_expression_bodied_operators = true
csharp_style_expression_bodied_properties = true
csharp_style_expression_bodied_indexers = true
csharp_style_expression_bodied_accessors = true
dotnet_style_collection_initializer = true
dotnet_style_coalesce_expression = true
dotnet_style_null_propagation = true
dotnet_style_prefer_auto_properties = true
dotnet_style_explicit_tuple_names = true
csharp_prefer_simple_default_expression = true
dotnet_style_prefer_inferred_tuple_names = true
csharp_new_line_before_open_brace = none
csharp_new_line_before_else = false
csharp_new_line_before_catch = false
csharp_new_line_before_finally = false
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false
csharp_prefer_simple_using_statement = true
csharp_using_directive_placement = outside_namespace
sharp_style_prefer_switch_expression = true
dotnet_style_prefer_simplified_interpolation = true
dotnet_style_prefer_compound_assignment = true
dotnet_style_prefer_simplified_boolean_expressions = true
csharp_style_prefer_not_pattern = true
csharp_style_implicit_object_creation_when_type_is_apparent = true
csharp_style_prefer_null_check_over_type_check = true
csharp_style_namespace_declarations = file_scoped
csharp_style_prefer_extended_property_pattern = true
csharp_style_prefer_method_group_conversion = true
csharp_style_prefer_readonly_struct = true
csharp_style_conditional_delegate_call = true