-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.editorconfig
More file actions
233 lines (209 loc) · 11.5 KB
/
.editorconfig
File metadata and controls
233 lines (209 loc) · 11.5 KB
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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
[*.cs]
# IDE0010: Add missing cases
dotnet_diagnostic.ide0010.severity=none
# IDE0022: Use block body for methods
csharp_style_expression_bodied_methods=true:silent
# IDE0066: Convert switch statement to expression
csharp_style_prefer_switch_expression=true:silent
# CA1027: Mark enums with FlagsAttribute
# **Note: Enums should not get this attribute unless they are intended to be combined
dotnet_diagnostic.ca1027.severity=none
# CA1028: Enum Storage should be Int32
# **Note: It should be the numeric type that usage dictates
dotnet_diagnostic.ca1028.severity=none
# CA1034: Nested types should not be visible
# **Note: That shouldn't happen often, but there are also few legitimate exceptions
dotnet_diagnostic.ca1034.severity=none
# CA1054: Uri parameters should not be strings
# **Note: Optional features that allows the user to skip manually converting to Uri
dotnet_diagnostic.ca1054.severity=none
# CA2234: Pass system uri objects instead of strings
# **Note: Manually converting to Uri isn't necessary
dotnet_diagnostic.ca2234.severity=none
# CA5350: Do Not Use Weak Cryptographic Algorithms
# **Note: Not intended for security relevant use
dotnet_diagnostic.ca5350.severity=none
# CA5351: Do Not Use Broken Cryptographic Algorithms
# **Note: Not intended for security relevant use
dotnet_diagnostic.ca5351.severity=none
# CA5379: Do Not Use Weak Key Derivation Function Algorithm
# **Note: Not intended for security relevant use
dotnet_diagnostic.ca5379.severity=none
# ReSharper: Member can be made private
resharper_member_can_be_private_global_highlighting=none
# ReSharper: Use concrete value instead of 'default'
resharper_prefer_concrete_value_over_default_highlighting=none
[*.{asax,ascx,aspx,cs,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,build,config,csproj,dbml,discomap,dtd,json,jsproj,lsproj,njsproj,nuspec,proj,props,resjson,resw,resx,StyleCop,targets,tasks,vbproj,xml,xsd}]
indent_style=space
indent_size=2
tab_width=2
[*]
# Microsoft .NET properties
csharp_new_line_before_members_in_object_initializers=false
csharp_preferred_modifier_order=private, internal, protected, public, abstract, virtual, sealed, override, unsafe, static, volatile, extern, new, readonly, async, file, required:suggestion
csharp_prefer_braces=false:none
csharp_space_after_cast=false
csharp_style_namespace_declarations=block_scoped:suggestion
csharp_style_prefer_utf8_string_literals=true:hint
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.unity_serialized_field_rule.import_to_resharper=True
dotnet_naming_rule.unity_serialized_field_rule.resharper_description=Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule.resharper_guid=5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule.severity=warning
dotnet_naming_rule.unity_serialized_field_rule.style=lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule.symbols=unity_serialized_field_symbols
dotnet_naming_rule.unity_serialized_field_rule_1.import_to_resharper=True
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_description=Unity serialized field
dotnet_naming_rule.unity_serialized_field_rule_1.resharper_guid=5f0fdb63-c892-4d2c-9324-15c80b22a7ef
dotnet_naming_rule.unity_serialized_field_rule_1.severity=warning
dotnet_naming_rule.unity_serialized_field_rule_1.style=lower_camel_case_style
dotnet_naming_rule.unity_serialized_field_rule_1.symbols=unity_serialized_field_symbols_1
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_style.lower_camel_case_style.capitalization=camel_case
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_accessibilities=*
dotnet_naming_symbols.unity_serialized_field_symbols.applicable_kinds=
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_applicable_kinds=unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols.resharper_required_modifiers=instance
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_accessibilities=*
dotnet_naming_symbols.unity_serialized_field_symbols_1.applicable_kinds=
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_applicable_kinds=unity_serialised_field
dotnet_naming_symbols.unity_serialized_field_symbols_1.resharper_required_modifiers=instance
dotnet_naming_symbols._symbols.applicable_accessibilities=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: ${File.FileName}\nVersion: ${CurrentDate.Year}-${CurrentDate.Month}-${CurrentDate.Day} ${CurrentDate.Hour}:${CurrentDate.Minute}\n\nCopyright (c) ${CurrentDate.Year}, Roy Schroedel.\nAll rights reserved.\n______________________________________________
# 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_extends_list=true
resharper_align_multiline_for_stmt=true
resharper_align_multiline_parameter=true
resharper_align_multiline_type_parameter_constraints=true
resharper_align_multiline_type_parameter_list=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_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=false
resharper_constructor_or_destructor_body=expression_body
resharper_cpp_insert_final_newline=true
resharper_csharp_align_first_arg_by_paren=true
resharper_csharp_align_multiline_parameter=true
resharper_csharp_align_multiple_declaration=true
resharper_csharp_empty_block_style=together_same_line
resharper_csharp_insert_final_newline=true
resharper_csharp_keep_blank_lines_in_code=1
resharper_csharp_keep_blank_lines_in_declarations=0
resharper_csharp_max_line_length=3200
resharper_csharp_new_line_before_while=true
resharper_csharp_stick_comment=false
resharper_csharp_use_indent_from_vs=false
resharper_csharp_wrap_lines=false
resharper_formatter_off_tag=@formatter:off
resharper_formatter_on_tag=@formatter:on
resharper_formatter_tags_enabled=true
resharper_indent_nested_fixed_stmt=true
resharper_indent_nested_for_stmt=true
resharper_indent_nested_foreach_stmt=true
resharper_indent_nested_lock_stmt=true
resharper_indent_nested_usings_stmt=true
resharper_indent_nested_while_stmt=true
resharper_instance_members_qualify_declared_in=
resharper_local_function_body=expression_body
resharper_method_or_operator_body=expression_body
resharper_new_line_before_while=true
resharper_parentheses_redundancy_style=remove
resharper_place_accessor_attribute_on_same_line=false
resharper_place_expr_accessor_on_single_line=true
resharper_place_expr_method_on_single_line=false
resharper_place_expr_property_on_single_line=true
resharper_place_field_attribute_on_same_line=false
resharper_place_simple_embedded_statement_on_same_line=false
resharper_space_after_cast=false
resharper_space_between_attribute_sections=false
resharper_space_within_single_line_array_initializer_braces=true
resharper_use_indent_from_vs=false
resharper_wrap_text=false
resharper_xmldoc_attribute_indent=align_by_first_attribute
resharper_xmldoc_attribute_style=on_single_line
resharper_xmldoc_blank_line_after_pi=false
resharper_xmldoc_keep_user_linebreaks=false
resharper_xmldoc_linebreak_before_elements=summary,remarks,example,exception,returns,param,typeparam,value,para,list,listheader,item
resharper_xmldoc_linebreak_before_multiline_elements=false
resharper_xmldoc_linebreaks_inside_tags_for_elements_longer_than=0
resharper_xmldoc_linebreaks_inside_tags_for_elements_with_child_elements=false
resharper_xmldoc_linebreaks_inside_tags_for_multiline_elements=false
resharper_xmldoc_max_line_length=0
resharper_xmldoc_pi_attribute_style=on_single_line
resharper_xmldoc_space_before_self_closing=false
resharper_xmldoc_wrap_around_elements=false
resharper_xmldoc_wrap_lines=false
resharper_xmldoc_wrap_tags_and_pi=false
# ReSharper inspection severities
resharper_arrange_namespace_body_highlighting=hint
resharper_arrange_redundant_parentheses_highlighting=hint
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_mvc_action_not_resolved_highlighting=warning
resharper_mvc_area_not_resolved_highlighting=warning
resharper_mvc_controller_not_resolved_highlighting=warning
resharper_mvc_masterpage_not_resolved_highlighting=warning
resharper_mvc_partial_view_not_resolved_highlighting=warning
resharper_mvc_template_not_resolved_highlighting=warning
resharper_mvc_view_component_not_resolved_highlighting=warning
resharper_mvc_view_component_view_not_resolved_highlighting=warning
resharper_mvc_view_not_resolved_highlighting=warning
resharper_razor_assembly_not_resolved_highlighting=warning
resharper_redundant_base_qualifier_highlighting=warning
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_switch_statement_missing_some_cases_highlighting=none
resharper_use_null_propagation_when_possible_highlighting=suggestion
resharper_web_config_module_not_resolved_highlighting=warning
resharper_web_config_type_not_resolved_highlighting=warning
resharper_web_config_wrong_module_highlighting=warning
charset=utf-8
end_of_line=lf
indent_size=4
indent_style=space
insert_final_newline=true
trim_trailing_whitespace=true
[*.{appxmanifest,asax,ascx,aspx,axaml,blockshader,c,c++,c++m,cc,ccm,cginc,compute,cp,cpp,cppm,cs,cshtml,cu,cuh,cxx,cxxm,dtd,fs,fsi,fsscript,fsx,fx,fxh,h,h++,hh,hlsl,hlsli,hlslinc,hp,hpp,hxx,icc,inc,inl,ino,ipp,ixx,master,ml,mli,mpp,mq4,mq5,mqh,mxx,nuspec,paml,pssl,pssli,razor,resw,resx,shader,shaderFoundry,skin,tcc,tpp,urtshader,usf,ush,uxml,vb,xaml,xamlx,xoml,xsd}]
indent_style=space
indent_size=4
tab_width=4