-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
57 lines (52 loc) · 2.38 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
54
55
56
57
root = true
[*]
end_of_line = lf
insert_final_newline = true
[*.{swift,cs}]
max_line_length = 120
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers = false
csharp_preferred_modifier_order = private, public, protected, internal, file, new, async, abstract, virtual, sealed, override, static, extern, unsafe, volatile, readonly, required:suggestion
csharp_preserve_single_line_blocks = true
csharp_style_var_for_built_in_types = false:suggestion
dotnet_sort_system_directives_first = false
# ReSharper properties
resharper_blank_lines_after_block_statements = 0
resharper_blank_lines_after_using_list = 0
resharper_blank_lines_around_single_line_auto_property = 1
resharper_braces_for_foreach = required
resharper_braces_redundant = false
resharper_csharp_blank_lines_around_namespace = 0
resharper_csharp_blank_lines_inside_region = 0
resharper_csharp_empty_block_style = together_same_line
resharper_csharp_insert_final_newline = true
resharper_csharp_int_align_comments = true
resharper_csharp_max_line_length = 131
resharper_csharp_remove_blank_lines_near_braces_in_code = false
resharper_csharp_wrap_before_ternary_opsigns = false
resharper_csharp_wrap_parameters_style = chop_if_long
resharper_default_internal_modifier = implicit
resharper_for_built_in_types = use_var_when_evident
resharper_fsharp_insert_final_newline = false
resharper_html_insert_final_newline = false
resharper_instance_members_qualify_declared_in =
resharper_keep_existing_attribute_arrangement = true
resharper_keep_existing_declaration_block_arrangement = false
resharper_method_or_operator_body = expression_body
resharper_parentheses_redundancy_style = remove
resharper_place_accessorholder_attribute_on_same_line = false
resharper_place_expr_accessor_on_single_line = true
resharper_place_expr_method_on_single_line = true
resharper_place_expr_property_on_single_line = true
resharper_place_field_attribute_on_same_line = false
resharper_place_simple_embedded_statement_on_same_line = false
resharper_resx_insert_final_newline = false
resharper_T4_insert_final_newline = false
resharper_vb_insert_final_newline = false
resharper_wrap_chained_binary_expressions = chop_if_long
resharper_wrap_enum_declaration = wrap_if_long
resharper_wrap_object_and_collection_initializer_style = chop_always
resharper_xmldoc_insert_final_newline = false
resharper_xml_insert_final_newline = false
[*.{md,txt}]
max_line_length = 80