-
Notifications
You must be signed in to change notification settings - Fork 11
/
.editorconfig
76 lines (69 loc) · 3.08 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
root=true
# EditorConfig is awesome: http://EditorConfig.org
# top-most EditorConfig file
[*]
indent_style=space
indent_size=4
tab_width=4
end_of_line=lf
insert_final_newline=true
max_line_length=80
# remove unused usings
dotnet_diagnostic.IDE0005.severity = warning
# Microsoft .NET properties
csharp_new_line_before_catch=false
csharp_new_line_before_else=false
csharp_new_line_before_finally=false
csharp_new_line_before_members_in_object_initializers=false
csharp_new_line_before_open_brace=none
csharp_new_line_between_query_expression_clauses=false
csharp_preferred_modifier_order=public, private, protected, internal, new, abstract, virtual, sealed, override, static, readonly, extern, unsafe, volatile, async:suggestion
csharp_space_after_cast=false
csharp_style_var_elsewhere=true:hint
csharp_style_var_for_built_in_types=true:hint
csharp_style_var_when_type_is_apparent=true:hint
dotnet_style_predefined_type_for_member_access=true:hint
dotnet_style_qualification_for_event=false:hint
dotnet_style_qualification_for_field=false:hint
dotnet_style_qualification_for_method=false:hint
dotnet_style_qualification_for_property=false:hint
dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint
# ReSharper properties
resharper_align_multiline_binary_expressions_chain=false
resharper_wrap_verbatim_interpolated_strings=chop_if_long;
resharper_wrap_before_binary_opsign=false;
resharper_allow_comment_after_lbrace=true
resharper_braces_for_dowhile=required_for_multiline
resharper_braces_for_fixed=required_for_multiline
resharper_braces_for_for=required_for_multiline
resharper_braces_for_foreach=required_for_multiline
resharper_braces_for_ifelse=required_for_multiline
resharper_braces_for_lock=required_for_multiline
resharper_braces_for_using=required_for_multiline
resharper_braces_for_while=required_for_multiline
resharper_braces_redundant=false
resharper_brace_style=end_of_line
resharper_csharp_empty_block_style=together_same_line
resharper_csharp_keep_blank_lines_in_code=1
resharper_csharp_keep_blank_lines_in_declarations=1
resharper_csharp_stick_comment=false
resharper_csharp_wrap_before_ternary_opsigns=false
resharper_csharp_wrap_for_stmt_header_style=chop_if_long
resharper_csharp_wrap_multiple_declaration_style=chop_if_long
resharper_csharp_wrap_ternary_expr_style=chop_if_long
resharper_enforce_line_ending_style=true
resharper_keep_existing_embedded_block_arrangement=true
resharper_keep_existing_initializer_arrangement=false
resharper_new_line_before_catch=false
resharper_new_line_before_else=false
resharper_new_line_before_finally=false
resharper_place_accessor_attribute_on_same_line=True
resharper_place_simple_anonymousmethod_on_single_line=false
resharper_place_simple_initializer_on_single_line=false
resharper_space_within_single_line_array_initializer_braces=true
resharper_use_indent_from_vs=false
resharper_wrap_multiple_type_parameter_constraints_style=chop_if_long
resharper_wrap_object_and_collection_initializer_style=chop_if_long
# ReSharper inspection severities
resharper_built_in_type_reference_style_highlighting=none
resharper_redundant_base_qualifier_highlighting=warning