-
Notifications
You must be signed in to change notification settings - Fork 2
/
.editorconfig
86 lines (79 loc) · 3.65 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
[*]
end_of_line=crlf
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers=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=false:hint
csharp_style_var_for_built_in_types=false:hint
csharp_style_var_when_type_is_apparent=false:hint
dotnet_style_predefined_type_for_locals_parameters_members=true:warning
dotnet_style_predefined_type_for_member_access=true:warning
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_linq_query=true
resharper_align_multiline_calls_chain=true
resharper_align_multiline_extends_list=true
resharper_braces_for_for=required
resharper_braces_for_foreach=required
resharper_braces_for_ifelse=required
resharper_braces_for_while=required
resharper_csharp_alignment_tab_fill_style=use_tabs_only
resharper_csharp_align_multiline_parameter=true
resharper_csharp_indent_style=tab
resharper_csharp_outdent_dots=true
resharper_csharp_use_indent_from_vs=false
resharper_csharp_wrap_lines=false
resharper_enforce_line_ending_style=true
resharper_indent_nested_fixed_stmt=true
resharper_indent_nested_foreach_stmt=true
resharper_indent_nested_for_stmt=true
resharper_indent_nested_lock_stmt=true
resharper_indent_nested_usings_stmt=true
resharper_indent_nested_while_stmt=true
resharper_keep_existing_linebreaks=false
resharper_outdent_binary_ops=true
resharper_place_attribute_on_same_line=False
resharper_space_after_cast=false
# ReSharper inspection severities
resharper_check_namespace_highlighting=none
resharper_convert_if_statement_to_conditional_ternary_expression_highlighting=warning
resharper_convert_if_statement_to_null_coalescing_expression_highlighting=none
resharper_convert_if_statement_to_return_statement_highlighting=warning
resharper_convert_if_statement_to_switch_statement_highlighting=warning
resharper_for_can_be_converted_to_foreach_highlighting=none
resharper_heap_view_boxing_allocation_highlighting=warning
resharper_heap_view_closure_allocation_highlighting=none
resharper_heap_view_delegate_allocation_highlighting=none
resharper_heap_view_object_allocation_evident_highlighting=none
resharper_heap_view_object_allocation_highlighting=none
resharper_heap_view_object_allocation_possible_highlighting=none
resharper_invert_if_highlighting=none
resharper_localizable_element_highlighting=none
resharper_loop_can_be_converted_to_query_highlighting=none
resharper_merge_conditional_expression_highlighting=warning
resharper_merge_sequential_checks_highlighting=none
resharper_redundant_base_qualifier_highlighting=warning
resharper_redundant_overload_global_highlighting=warning
resharper_redundant_overload_local_highlighting=warning
resharper_return_type_can_be_enumerable_local_highlighting=none
resharper_switch_statement_missing_some_cases_highlighting=none
resharper_unused_member_global_highlighting=none
[*.xml]
indent_style=space
[*.{c,c++,cc,cp,cpp,cs,cu,cuh,cxx,h,hh,hpp,hxx,inc,inl,ino,ipp,mpp,proto,tpp}]
indent_style=tab
indent_size=tab
tab_width=4
[*.{asax,ascx,aspx,cshtml,css,htm,html,js,jsx,master,razor,skin,ts,tsx,vb,xaml,xamlx,xoml}]
indent_style=space
indent_size=4
tab_width=4
[*.{appxmanifest,asmdef,build,config,csproj,dbml,discomap,dtd,json,jsproj,lsproj,njsproj,nuspec,proj,props,resjson,resw,resx,StyleCop,targets,tasks,vbproj,xml,xsd}]
indent_style=tab
indent_size=tab
tab_width=4