-
Notifications
You must be signed in to change notification settings - Fork 18
/
.editorconfig
61 lines (53 loc) · 2.31 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
[*.cs]
# New line preferences
end_of_line = crlf
insert_final_newline = false
# CA1310: Specify StringComparison for correctness
dotnet_diagnostic.ca1310.severity = none
# CA1304: string.ToLower()
dotnet_diagnostic.ca1304.severity = none
# CA1309: use ordinal string comparison
dotnet_diagnostic.ca1309.severity = none
# ReSharper properties
resharper_align_linq_query = true
resharper_align_multiline_calls_chain = true
resharper_align_multiline_expression = true
resharper_align_multiline_extends_list = true
resharper_align_multiline_parameter = true
resharper_align_multiple_declaration = true
resharper_align_multline_type_parameter_constrains = true
resharper_align_multline_type_parameter_list = true
resharper_csharp_empty_block_style = together_same_line
resharper_csharp_int_align_comments = true
resharper_csharp_stick_comment = false
resharper_csharp_wrap_after_declaration_lpar = true
resharper_csharp_wrap_before_declaration_rpar = true
resharper_indent_nested_foreach_stmt = true
resharper_indent_nested_for_stmt = true
resharper_indent_nested_usings_stmt = true
resharper_indent_nested_while_stmt = true
resharper_indent_primary_constructor_decl_pars = inside
resharper_int_align_switch_expressions = true
resharper_int_align_switch_sections = true
resharper_max_formal_parameters_on_line = 2
resharper_max_primary_constructor_parameters_on_line = 2
resharper_outdent_statement_labels = true
resharper_place_simple_case_statement_on_same_line = if_owner_is_single_line
resharper_wrap_before_primary_constructor_declaration_lpar = true
resharper_wrap_before_primary_constructor_declaration_rpar = true
# Other
trim_trailing_whitespace = true
csharp_style_namespace_declarations = file_scoped:silent
[*]
# ReSharper properties
resharper_align_multiline_argument = true
resharper_align_multiline_parameter = true
resharper_csharp_empty_block_style = together_same_line
resharper_csharp_wrap_after_declaration_lpar = true
resharper_csharp_wrap_parameters_style = chop_if_long
resharper_keep_existing_primary_constructor_declaration_parens_arrangement = false
resharper_max_formal_parameters_on_line = 2
resharper_max_primary_constructor_parameters_on_line = 10000
resharper_wrap_before_declaration_rpar = false
resharper_wrap_before_primary_constructor_declaration_lpar = true
resharper_wrap_before_primary_constructor_declaration_rpar = false