-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.editorconfig
154 lines (148 loc) · 8.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
[*.{cs,resx}]
end_of_line=lf
# Broken in .NET Framework 4.8.1
dotnet_diagnostic.IDE0028.severity = none
dotnet_diagnostic.IDE0290.severity = none
dotnet_diagnostic.IDE0300.severity = none
dotnet_diagnostic.IDE0301.severity = none
dotnet_diagnostic.IDE0305.severity = none
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers=false
csharp_preferred_modifier_order=public, private, protected, internal, file, new, static, abstract, virtual, sealed, readonly, override, extern, unsafe, volatile, async, required:suggestion
csharp_prefer_braces=false:none
csharp_style_prefer_utf8_string_literals=true:suggestion
csharp_style_var_elsewhere=true:suggestion
csharp_style_var_for_built_in_types=true:suggestion
csharp_style_var_when_type_is_apparent=true:suggestion
csharp_using_directive_placement=inside_namespace:silent
dotnet_naming_rule._rule.import_to_resharper=True
dotnet_naming_rule._rule.resharper_description=
dotnet_naming_rule._rule.resharper_guid=9bddbdc1-b4e2-4258-a742-edc938134f7b
dotnet_naming_rule._rule.severity=warning
dotnet_naming_rule._rule.style=all_upper_style
dotnet_naming_rule._rule.symbols=_symbols
dotnet_naming_style.all_upper_style.capitalization=all_upper
dotnet_naming_style.all_upper_style.word_separator=_
dotnet_naming_symbols._symbols.applicable_accessibilities=local,public
dotnet_naming_symbols._symbols.applicable_kinds=
dotnet_naming_symbols._symbols.resharper_applicable_kinds=enum_member
dotnet_naming_symbols._symbols.resharper_required_modifiers=no
dotnet_style_parentheses_in_arithmetic_binary_operators=never_if_unnecessary:none
dotnet_style_parentheses_in_other_binary_operators=always_for_clarity:none
dotnet_style_parentheses_in_relational_binary_operators=never_if_unnecessary:none
dotnet_style_predefined_type_for_locals_parameters_members=true:suggestion
dotnet_style_predefined_type_for_member_access=true:suggestion
dotnet_style_qualification_for_event=false:suggestion
dotnet_style_qualification_for_field=false:suggestion
dotnet_style_qualification_for_method=false:suggestion
dotnet_style_qualification_for_property=false:suggestion
dotnet_style_require_accessibility_modifiers=for_non_interface_members:suggestion
file_header_template===============================================\nThis file is distributed under the MIT License\n==============================================\n\nFilename: {fileName}\nVersion: $CURRENT_YEAR$-$CURRENT_MONTH$-$CURRENT_DAY$ $CURRENT_TIME$\n\nCopyright (c) $CURRENT_YEAR$, Si13n7 Developments(tm)\nAll rights reserved.\n______________________________________________
# ReSharper properties
resharper_align_first_arg_by_paren=true
resharper_align_linq_query=true
resharper_align_multiline_argument=true
resharper_align_multiline_calls_chain=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_blank_lines_after_block_statements=0
resharper_blank_lines_around_single_line_auto_property=1
resharper_blank_lines_around_single_line_property=1
resharper_blank_lines_before_single_line_comment=1
resharper_braces_redundant=true
resharper_constructor_or_destructor_body=expression_body
resharper_csharp_insert_final_newline=true
resharper_csharp_keep_blank_lines_in_code=1
resharper_csharp_keep_blank_lines_in_declarations=0
resharper_csharp_stick_comment=false
resharper_csharp_use_indent_from_vs=false
resharper_csharp_wrap_lines=false
resharper_empty_block_style=together_same_line
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_local_function_body=expression_body
resharper_method_or_operator_body=expression_body
resharper_new_line_before_while=true
resharper_place_accessor_attribute_on_same_line=false
resharper_place_field_attribute_on_same_line=false
resharper_place_simple_embedded_statement_on_same_line=false
resharper_space_between_attribute_sections=false
resharper_xmldoc_attribute_indent=align_by_first_attribute
resharper_xmldoc_attribute_style=on_single_line
resharper_xmldoc_keep_user_linebreaks=false
resharper_xmldoc_linebreaks_inside_tags_for_elements_longer_than=0
resharper_xmldoc_max_line_length=80
resharper_xmldoc_pi_attribute_style=on_single_line
resharper_xmldoc_space_before_self_closing=false
resharper_xmldoc_wrap_tags_and_pi=false
# ReSharper inspection severities
resharper_arrange_attributes_highlighting=suggestion
resharper_arrange_constructor_or_destructor_body_highlighting=suggestion
resharper_arrange_local_function_body_highlighting=suggestion
resharper_arrange_method_or_operator_body_highlighting=suggestion
resharper_arrange_redundant_parentheses_highlighting=suggestion
resharper_arrange_this_qualifier_highlighting=hint
resharper_arrange_type_member_modifiers_highlighting=hint
resharper_arrange_type_modifiers_highlighting=hint
resharper_built_in_type_reference_style_for_member_access_highlighting=hint
resharper_built_in_type_reference_style_highlighting=hint
resharper_check_namespace_highlighting=none
resharper_convert_to_compound_assignment_highlighting=suggestion
resharper_empty_constructor_highlighting=suggestion
resharper_empty_general_catch_clause_highlighting=suggestion
resharper_for_can_be_converted_to_foreach_highlighting=hint
resharper_identifier_typo_highlighting=none
resharper_loop_can_be_partly_converted_to_query_highlighting=hint
resharper_merge_into_logical_pattern_highlighting=suggestion
resharper_redundant_base_qualifier_highlighting=warning
resharper_string_compare_is_culture_specific_1_highlighting=suggestion
resharper_string_compare_is_culture_specific_2_highlighting=suggestion
resharper_string_compare_is_culture_specific_3_highlighting=suggestion
resharper_string_compare_is_culture_specific_4_highlighting=suggestion
resharper_string_compare_is_culture_specific_5_highlighting=suggestion
resharper_string_compare_is_culture_specific_6_highlighting=suggestion
resharper_string_compare_to_is_culture_specific_highlighting=suggestion
resharper_string_index_of_is_culture_specific_1_highlighting=suggestion
resharper_string_index_of_is_culture_specific_2_highlighting=suggestion
resharper_string_index_of_is_culture_specific_3_highlighting=suggestion
resharper_string_last_index_of_is_culture_specific_1_highlighting=suggestion
resharper_string_last_index_of_is_culture_specific_2_highlighting=suggestion
resharper_string_last_index_of_is_culture_specific_3_highlighting=suggestion
resharper_string_literal_typo_highlighting=none
resharper_suggest_var_or_type_built_in_types_highlighting=hint
resharper_suggest_var_or_type_elsewhere_highlighting=hint
resharper_suggest_var_or_type_simple_types_highlighting=hint
resharper_suspicious_type_conversion_global_highlighting=suggestion
resharper_unused_member_global_highlighting=none
resharper_unused_method_return_value_global_highlighting=none
resharper_use_null_propagation_highlighting=warning
resharper_vb_string_compare_is_culture_specific_1_highlighting=suggestion
resharper_vb_string_compare_is_culture_specific_2_highlighting=suggestion
resharper_vb_string_compare_is_culture_specific_3_highlighting=suggestion
resharper_vb_string_compare_is_culture_specific_4_highlighting=suggestion
resharper_vb_string_compare_is_culture_specific_5_highlighting=suggestion
resharper_vb_string_compare_is_culture_specific_6_highlighting=suggestion
resharper_vb_string_compare_to_is_culture_specific_highlighting=suggestion
resharper_vb_string_index_of_is_culture_specific_1_highlighting=suggestion
resharper_vb_string_index_of_is_culture_specific_2_highlighting=suggestion
resharper_vb_string_index_of_is_culture_specific_3_highlighting=suggestion
resharper_vb_string_last_index_of_is_culture_specific_1_highlighting=suggestion
resharper_vb_string_last_index_of_is_culture_specific_2_highlighting=suggestion
resharper_vb_string_last_index_of_is_culture_specific_3_highlighting=suggestion
[*.{appxmanifest,axml,build,config,cshtml,csproj,dbml,discomap,dtd,htm,html,jsproj,lsproj,njsproj,nuspec,proj,props,razor,resw,resx,StyleCop,targets,tasks,vbproj,xml,xsd}]
indent_style=tab
indent_size=tab
tab_width=4
[*.{asax,ascx,aspx,axaml,cs,master,paml,skin,vb,xaml,xamlx,xoml}]
indent_style=space
indent_size=4
tab_width=4