-
Notifications
You must be signed in to change notification settings - Fork 0
/
.editorconfig
102 lines (92 loc) · 3.49 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
root=true
[*.cs]
max_line_length=100
insert_final_newline=true
trim_trailing_whitespace=true
indent_style=space
[*]
charset=utf-8
end_of_line=crlf
indent_style=space
indent_size=4
tab_width=8
# Microsoft .NET properties
csharp_new_line_before_else=false
csharp_new_line_before_members_in_object_initializers=false
csharp_new_line_before_open_brace=none
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=false:hint
csharp_style_var_for_built_in_types=false:hint
csharp_style_var_when_type_is_apparent=true:hint
dotnet_style_predefined_type_for_locals_parameters_members=true:hint
dotnet_style_predefined_type_for_member_access=true:hint
dotnet_style_qualification_for_event=false:warning
dotnet_style_qualification_for_field=false:warning
dotnet_style_qualification_for_method=false:warning
dotnet_style_qualification_for_property=false:warning
dotnet_style_require_accessibility_modifiers=for_non_interface_members:hint
# ReSharper properties
resharper_add_imports_to_deepest_scope=true
resharper_align_linq_query=true
resharper_align_multiline_argument=true
resharper_align_multiline_calls_chain=true
resharper_align_multiline_expression=true
resharper_align_multiline_extends_list=true
resharper_align_multiline_for_stmt=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_autodetect_indent_settings=true
resharper_braces_for_for=required
resharper_braces_for_foreach=required
resharper_braces_for_ifelse=required
resharper_braces_for_while=required
resharper_csharp_max_line_length=100
resharper_csharp_tab_width=8
resharper_csharp_wrap_arguments_style=chop_if_long
resharper_csharp_wrap_parameters_style=chop_if_long
resharper_empty_block_style=together
resharper_for_built_in_types=use_var_when_evident
resharper_indent_invocation_pars=outside_and_inside
resharper_indent_method_decl_pars=outside_and_inside
resharper_indent_statement_pars=outside_and_inside
resharper_keep_existing_invocation_parens_arrangement=false
resharper_max_attribute_length_for_same_line=1
resharper_place_attribute_on_same_line=False
resharper_use_indent_from_vs=false
resharper_wrap_after_invocation_lpar=true
resharper_wrap_before_extends_colon=true
resharper_wrap_before_first_type_parameter_constraint=true
# ReSharper inspection severities
resharper_sa1012_highlighting=none
resharper_sa1101_highlighting=none
resharper_sa1116_highlighting=hint
resharper_sa1118_highlighting=hint
resharper_sa1305_highlighting=none
resharper_sa1309_highlighting=hint
resharper_sa1310_highlighting=none
resharper_sa1500_highlighting=none
resharper_sx1309_highlighting=none
resharper_web_config_module_not_resolved_highlighting=warning
resharper_web_config_type_not_resolved_highlighting=warning
resharper_web_config_wrong_module_highlighting=warning
trim_trailing_whitespace=true
insert_final_newline=false
[*.config]
indent_style=space
indent_size=4
[{*.csproj,*.ccproj,*.androidproj}]
indent_style=space
indent_size=2
[*.ruleset]
indent_style=space
indent_size=4
[.editorconfig]
indent_style=space
indent_size=4
[*.{appxmanifest,asax,ascx,aspx,build,config,cshtml,dbml,discomap,dtd,htm,html,jsproj,lsproj,master,njsproj,nuspec,proj,props,razor,resw,resx,skin,StyleCop,targets,tasks,vb,vbproj,xaml,xamlx,xml,xoml,xsd}]
indent_style=space
indent_size=4
tab_width=8