-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.editorconfig
More file actions
505 lines (497 loc) · 33.2 KB
/
.editorconfig
File metadata and controls
505 lines (497 loc) · 33.2 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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
[*.cs]
# CA1416: 验证平台兼容性
dotnet_diagnostic.ca1416.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:warning
csharp_prefer_braces = when_multiline:none
csharp_style_namespace_declarations = block_scoped:warning
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_var_elsewhere = false:none
csharp_style_var_for_built_in_types = false:suggestion
dotnet_diagnostic.cs8981.severity = none
dotnet_naming_rule.constants_rule.import_to_resharper = True
dotnet_naming_rule.constants_rule.resharper_description = Constant fields (not private)
dotnet_naming_rule.constants_rule.resharper_guid = 669e5282-fb4b-4e90-91e7-07d269d04b60
dotnet_naming_rule.constants_rule.severity = suggestion
dotnet_naming_rule.constants_rule.style = all_upper_style
dotnet_naming_rule.constants_rule.symbols = constants_symbols
dotnet_naming_rule.enum_member_rule.import_to_resharper = True
dotnet_naming_rule.enum_member_rule.resharper_description = Enum members
dotnet_naming_rule.enum_member_rule.resharper_guid = 8b8504e3-f0be-4c14-9103-c732f2bddc15
dotnet_naming_rule.enum_member_rule.severity = none
dotnet_naming_rule.enum_member_rule.style = upper_camel_case_style
dotnet_naming_rule.enum_member_rule.symbols = enum_member_symbols
dotnet_naming_rule.internal_protected_public_methods_rule.import_to_resharper = True
dotnet_naming_rule.internal_protected_public_methods_rule.resharper_description = internal/protected/public methods
dotnet_naming_rule.internal_protected_public_methods_rule.resharper_guid = 9ffbe43b-c610-411b-9839-1416a146d9b0
dotnet_naming_rule.internal_protected_public_methods_rule.severity = suggestion
dotnet_naming_rule.internal_protected_public_methods_rule.style = upper_camel_case_style
dotnet_naming_rule.internal_protected_public_methods_rule.symbols = internal_protected_public_methods_symbols
dotnet_naming_rule.internal_protected_public_properties_rule.import_to_resharper = True
dotnet_naming_rule.internal_protected_public_properties_rule.resharper_description = internal/protected/public properties
dotnet_naming_rule.internal_protected_public_properties_rule.resharper_guid = fd562728-c23d-417f-a19f-9d854247fbea
dotnet_naming_rule.internal_protected_public_properties_rule.severity = suggestion
dotnet_naming_rule.internal_protected_public_properties_rule.style = upper_camel_case_style
dotnet_naming_rule.internal_protected_public_properties_rule.symbols = internal_protected_public_properties_symbols
dotnet_naming_rule.local_constants_rule.import_to_resharper = True
dotnet_naming_rule.local_constants_rule.resharper_description = Local constants
dotnet_naming_rule.local_constants_rule.resharper_guid = a4f433b8-abcd-4e55-a08f-82e78cef0f0c
dotnet_naming_rule.local_constants_rule.severity = suggestion
dotnet_naming_rule.local_constants_rule.style = all_lower_style
dotnet_naming_rule.local_constants_rule.symbols = local_constants_symbols
dotnet_naming_rule.local_functions_rule.import_to_resharper = True
dotnet_naming_rule.local_functions_rule.resharper_description = Local functions
dotnet_naming_rule.local_functions_rule.resharper_guid = 76f79b1e-ece7-4df2-a322-1bd7fea25eb7
dotnet_naming_rule.local_functions_rule.severity = suggestion
dotnet_naming_rule.local_functions_rule.style = lower_camel_case_style
dotnet_naming_rule.local_functions_rule.symbols = local_functions_symbols
dotnet_naming_rule.private_constants_rule.import_to_resharper = True
dotnet_naming_rule.private_constants_rule.resharper_description = Constant fields (private)
dotnet_naming_rule.private_constants_rule.resharper_guid = 236f7aa5-7b06-43ca-bf2a-9b31bfcff09a
dotnet_naming_rule.private_constants_rule.severity = suggestion
dotnet_naming_rule.private_constants_rule.style = all_lower_style
dotnet_naming_rule.private_constants_rule.symbols = private_constants_symbols
dotnet_naming_rule.private_instance_fields_rule.import_to_resharper = True
dotnet_naming_rule.private_instance_fields_rule.resharper_description = Instance fields (private)
dotnet_naming_rule.private_instance_fields_rule.resharper_guid = 4a98fdf6-7d98-4f5a-afeb-ea44ad98c70c
dotnet_naming_rule.private_instance_fields_rule.resharper_style = aaBb, _ + aaBb
dotnet_naming_rule.private_instance_fields_rule.severity = suggestion
dotnet_naming_rule.private_instance_fields_rule.style = lower_camel_case_style
dotnet_naming_rule.private_instance_fields_rule.symbols = private_instance_fields_symbols
dotnet_naming_rule.private_methods_rule.import_to_resharper = True
dotnet_naming_rule.private_methods_rule.resharper_description = private methods
dotnet_naming_rule.private_methods_rule.resharper_guid = 9d1af99b-befe-48a4-9eb3-661384e29869
dotnet_naming_rule.private_methods_rule.severity = suggestion
dotnet_naming_rule.private_methods_rule.style = lower_camel_case_style
dotnet_naming_rule.private_methods_rule.symbols = private_methods_symbols
dotnet_naming_rule.private_properties_rule.import_to_resharper = True
dotnet_naming_rule.private_properties_rule.resharper_description = private properties
dotnet_naming_rule.private_properties_rule.resharper_guid = a4c2df6c-b202-48d5-b077-e678cb548c25
dotnet_naming_rule.private_properties_rule.severity = suggestion
dotnet_naming_rule.private_properties_rule.style = lower_camel_case_style
dotnet_naming_rule.private_properties_rule.symbols = private_properties_symbols
dotnet_naming_rule.private_static_fields_rule.import_to_resharper = True
dotnet_naming_rule.private_static_fields_rule.resharper_description = Static fields (private)
dotnet_naming_rule.private_static_fields_rule.resharper_guid = f9fce829-e6f4-4cb2-80f1-5497c44f51df
dotnet_naming_rule.private_static_fields_rule.severity = suggestion
dotnet_naming_rule.private_static_fields_rule.style = lower_camel_case_style
dotnet_naming_rule.private_static_fields_rule.symbols = private_static_fields_symbols
dotnet_naming_rule.private_static_readonly_rule.import_to_resharper = True
dotnet_naming_rule.private_static_readonly_rule.resharper_description = Static readonly fields (private)
dotnet_naming_rule.private_static_readonly_rule.resharper_guid = 15b5b1f1-457c-4ca6-b278-5615aedc07d3
dotnet_naming_rule.private_static_readonly_rule.severity = suggestion
dotnet_naming_rule.private_static_readonly_rule.style = all_lower_style
dotnet_naming_rule.private_static_readonly_rule.symbols = private_static_readonly_symbols
dotnet_naming_rule.static_readonly_rule.import_to_resharper = True
dotnet_naming_rule.static_readonly_rule.resharper_description = Static readonly fields (not private)
dotnet_naming_rule.static_readonly_rule.resharper_guid = c873eafb-d57f-481d-8c93-77f6863c2f88
dotnet_naming_rule.static_readonly_rule.severity = suggestion
dotnet_naming_rule.static_readonly_rule.style = all_upper_style
dotnet_naming_rule.static_readonly_rule.symbols = static_readonly_symbols
dotnet_naming_rule.type_parameters_rule.import_to_resharper = True
dotnet_naming_rule.type_parameters_rule.resharper_description = Type parameters
dotnet_naming_rule.type_parameters_rule.resharper_guid = 2c62818f-621b-4425-adc9-78611099bfcb
dotnet_naming_rule.type_parameters_rule.severity = suggestion
dotnet_naming_rule.type_parameters_rule.style = upper_camel_case_style
dotnet_naming_rule.type_parameters_rule.symbols = type_parameters_symbols
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 = suggestion
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_style.all_lower_style.capitalization = all_lower
dotnet_naming_style.all_lower_style.word_separator = _
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_style.upper_camel_case_style.capitalization = pascal_case
dotnet_naming_symbols.constants_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.constants_symbols.applicable_kinds = field
dotnet_naming_symbols.constants_symbols.required_modifiers = const
dotnet_naming_symbols.constants_symbols.resharper_applicable_kinds = constant_field
dotnet_naming_symbols.constants_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.enum_member_symbols.applicable_accessibilities = *
dotnet_naming_symbols.enum_member_symbols.applicable_kinds =
dotnet_naming_symbols.enum_member_symbols.resharper_applicable_kinds = enum_member
dotnet_naming_symbols.enum_member_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.internal_protected_public_methods_symbols.applicable_accessibilities = public, internal, protected, protected_internal
dotnet_naming_symbols.internal_protected_public_methods_symbols.applicable_kinds = method
dotnet_naming_symbols.internal_protected_public_methods_symbols.resharper_applicable_kinds = async_method, method
dotnet_naming_symbols.internal_protected_public_methods_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.internal_protected_public_properties_symbols.applicable_accessibilities = public, internal, protected, protected_internal
dotnet_naming_symbols.internal_protected_public_properties_symbols.applicable_kinds = property
dotnet_naming_symbols.internal_protected_public_properties_symbols.resharper_applicable_kinds = property
dotnet_naming_symbols.internal_protected_public_properties_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.local_constants_symbols.applicable_accessibilities = *
dotnet_naming_symbols.local_constants_symbols.applicable_kinds = local
dotnet_naming_symbols.local_constants_symbols.required_modifiers = const
dotnet_naming_symbols.local_constants_symbols.resharper_applicable_kinds = local_constant
dotnet_naming_symbols.local_constants_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.local_functions_symbols.applicable_accessibilities = *
dotnet_naming_symbols.local_functions_symbols.applicable_kinds = local_function
dotnet_naming_symbols.local_functions_symbols.resharper_applicable_kinds = local_function
dotnet_naming_symbols.local_functions_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_constants_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_constants_symbols.applicable_kinds = field
dotnet_naming_symbols.private_constants_symbols.required_modifiers = const
dotnet_naming_symbols.private_constants_symbols.resharper_applicable_kinds = constant_field
dotnet_naming_symbols.private_constants_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_instance_fields_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_instance_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.private_instance_fields_symbols.resharper_applicable_kinds = field, readonly_field
dotnet_naming_symbols.private_instance_fields_symbols.resharper_required_modifiers = instance
dotnet_naming_symbols.private_methods_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_methods_symbols.applicable_kinds = method
dotnet_naming_symbols.private_methods_symbols.resharper_applicable_kinds = async_method, method
dotnet_naming_symbols.private_methods_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_properties_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_properties_symbols.applicable_kinds = property
dotnet_naming_symbols.private_properties_symbols.resharper_applicable_kinds = property
dotnet_naming_symbols.private_properties_symbols.resharper_required_modifiers = any
dotnet_naming_symbols.private_static_fields_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_fields_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_fields_symbols.required_modifiers = static
dotnet_naming_symbols.private_static_fields_symbols.resharper_applicable_kinds = field
dotnet_naming_symbols.private_static_fields_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.private_static_readonly_symbols.applicable_accessibilities = private
dotnet_naming_symbols.private_static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.private_static_readonly_symbols.required_modifiers = readonly, static
dotnet_naming_symbols.private_static_readonly_symbols.resharper_applicable_kinds = readonly_field
dotnet_naming_symbols.private_static_readonly_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.static_readonly_symbols.applicable_accessibilities = public, internal, protected, protected_internal, private_protected
dotnet_naming_symbols.static_readonly_symbols.applicable_kinds = field
dotnet_naming_symbols.static_readonly_symbols.required_modifiers = readonly, static
dotnet_naming_symbols.static_readonly_symbols.resharper_applicable_kinds = readonly_field
dotnet_naming_symbols.static_readonly_symbols.resharper_required_modifiers = static
dotnet_naming_symbols.type_parameters_symbols.applicable_accessibilities = *
dotnet_naming_symbols.type_parameters_symbols.applicable_kinds = type_parameter
dotnet_naming_symbols.type_parameters_symbols.resharper_applicable_kinds = type_parameter
dotnet_naming_symbols.type_parameters_symbols.resharper_required_modifiers = any
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_style_parentheses_in_arithmetic_binary_operators = never_if_unnecessary:warning
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:warning
dotnet_style_parentheses_in_relational_binary_operators = never_if_unnecessary:warning
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
dotnet_style_prefer_collection_expression = when_types_loosely_match:none
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:warning
file_header_template = Copyright (c) ppy Pty Ltd <contact@ppy.sh>.Licensed under the MIT Licence.\nSee the LICENCE file in the repository root for full licence text.\n
# ReSharper properties
resharper_accessor_owner_body = accessors_with_expression_body
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_multiline_switch_expression = true
resharper_align_multiline_type_parameter_constraints = true
resharper_align_multiline_type_parameter_list = true
resharper_align_multiple_declaration = true
resharper_align_tuple_components = true
resharper_apply_auto_detected_rules = false
resharper_autodetect_indent_settings = true
resharper_blank_lines_before_block_statements = 1
resharper_blank_lines_before_case = 1
resharper_braces_redundant = true
resharper_csharp_empty_block_style = do_not_change
resharper_csharp_extra_spaces = leave_tabs
resharper_csharp_insert_final_newline = true
resharper_csharp_keep_blank_lines_in_code = 1
resharper_csharp_keep_blank_lines_in_declarations = 1
resharper_csharp_max_line_length = 200
resharper_csharp_outdent_commas = true
resharper_csharp_outdent_dots = true
resharper_csharp_stick_comment = false
resharper_csharp_wrap_before_binary_opsign = true
resharper_formatter_off_tag = @formatter:off
resharper_formatter_on_tag = @formatter:on
resharper_formatter_tags_enabled = true
resharper_indent_nested_foreach_stmt = true
resharper_indent_nested_for_stmt = true
resharper_indent_nested_lock_stmt = true
resharper_indent_nested_while_stmt = true
resharper_local_function_body = expression_body
resharper_no_indent_inside_if_element_longer_than = 2147483647
resharper_object_creation_when_type_evident = explicitly_typed
resharper_place_accessorholder_attribute_on_same_line = false
resharper_place_accessor_attribute_on_same_line = false
resharper_place_constructor_initializer_on_same_line = false
resharper_place_field_attribute_on_same_line = false
resharper_show_autodetect_configure_formatting_tip = false
resharper_space_around_arrow_op = true
resharper_use_indent_from_vs = false
resharper_wrap_array_initializer_style = chop_if_long
# ReSharper inspection severities
resharper_arrange_accessor_owner_body_highlighting = warning
resharper_arrange_constructor_or_destructor_body_highlighting = warning
resharper_arrange_default_value_when_type_evident_highlighting = warning
resharper_arrange_default_value_when_type_not_evident_highlighting = warning
resharper_arrange_local_function_body_highlighting = hint
resharper_arrange_method_or_operator_body_highlighting = hint
resharper_arrange_object_creation_when_type_evident_highlighting = warning
resharper_arrange_object_creation_when_type_not_evident_highlighting = warning
resharper_arrange_redundant_parentheses_highlighting = hint
resharper_arrange_static_member_qualifier_highlighting = suggestion
resharper_arrange_trailing_comma_in_multiline_lists_highlighting = none
# 成员排序规则 - 属性和字段优先,然后是构造函数,最后是方法
resharper_blank_lines_around_type_member_groups = 1
resharper_blank_lines_around_field = 0
resharper_blank_lines_around_property = 0
resharper_blank_lines_before_control_transfer_statements = 0
# 构造函数周围的空白行
resharper_blank_lines_around_constructor = 1
resharper_assignment_is_fully_discarded_highlighting = none
resharper_async_void_method_highlighting = warning
resharper_auto_property_can_be_made_get_only_global_highlighting = hint
resharper_auto_property_can_be_made_get_only_local_highlighting = hint
resharper_bad_attribute_brackets_spaces_highlighting = warning
resharper_bad_braces_spaces_highlighting = warning
resharper_bad_colon_spaces_highlighting = warning
resharper_bad_comma_spaces_highlighting = warning
resharper_bad_control_braces_indent_highlighting = warning
resharper_bad_control_braces_line_breaks_highlighting = warning
resharper_bad_declaration_braces_indent_highlighting = warning
resharper_bad_declaration_braces_line_breaks_highlighting = warning
resharper_bad_empty_braces_line_breaks_highlighting = warning
resharper_bad_expression_braces_indent_highlighting = warning
resharper_bad_expression_braces_line_breaks_highlighting = warning
resharper_bad_generic_brackets_spaces_highlighting = warning
resharper_bad_indent_highlighting = warning
resharper_bad_linq_line_breaks_highlighting = warning
resharper_bad_list_line_breaks_highlighting = warning
resharper_bad_member_access_spaces_highlighting = warning
resharper_bad_namespace_braces_indent_highlighting = warning
resharper_bad_parens_line_breaks_highlighting = warning
resharper_bad_parens_spaces_highlighting = warning
resharper_bad_preprocessor_indent_highlighting = warning
resharper_bad_semicolon_spaces_highlighting = warning
resharper_bad_spaces_after_keyword_highlighting = warning
resharper_bad_square_brackets_spaces_highlighting = warning
resharper_bad_switch_braces_indent_highlighting = warning
resharper_bad_symbol_spaces_highlighting = warning
resharper_built_in_type_reference_style_for_member_access_highlighting = hint
resharper_built_in_type_reference_style_highlighting = hint
resharper_check_for_reference_equality_instead_1_highlighting = warning
resharper_check_for_reference_equality_instead_2_highlighting = warning
resharper_class_never_instantiated_global_highlighting = hint
resharper_class_never_instantiated_local_highlighting = warning
resharper_class_with_virtual_members_never_inherited_global_highlighting = hint
resharper_collection_never_queried_global_highlighting = suggestion
resharper_collection_never_queried_local_highlighting = hint
resharper_compare_of_floats_by_equality_operator_highlighting = hint
resharper_convert_closure_to_method_group_highlighting = warning
resharper_convert_conditional_ternary_expression_to_switch_expression_highlighting = none
resharper_convert_constructor_to_member_initializers_highlighting = hint
resharper_convert_if_do_to_while_highlighting = warning
resharper_convert_if_statement_to_conditional_ternary_expression_highlighting = hint
resharper_convert_if_statement_to_null_coalescing_assignment_highlighting = warning
resharper_convert_if_statement_to_null_coalescing_expression_highlighting = warning
resharper_convert_if_to_or_expression_highlighting = warning
resharper_convert_nullable_to_short_form_highlighting = warning
resharper_convert_switch_statement_to_switch_expression_highlighting = none
resharper_convert_to_auto_property_highlighting = warning
resharper_convert_to_auto_property_when_possible_highlighting = warning
resharper_convert_to_auto_property_with_private_setter_highlighting = warning
resharper_convert_to_constant_local_highlighting = warning
resharper_convert_to_lambda_expression_highlighting = warning
resharper_convert_to_local_function_highlighting = hint
resharper_convert_to_primary_constructor_highlighting = none
resharper_convert_to_static_class_highlighting = warning
resharper_convert_to_using_declaration_highlighting = hint
resharper_convert_type_check_pattern_to_null_check_highlighting = none
resharper_double_negation_operator_highlighting = warning
resharper_duplicated_statements_highlighting = hint
resharper_duplicate_resource_highlighting = none
resharper_empty_general_catch_clause_highlighting = none
resharper_enforce_do_while_statement_braces_highlighting = warning
resharper_enforce_fixed_statement_braces_highlighting = warning
resharper_enforce_foreach_statement_braces_highlighting = warning
resharper_enforce_for_statement_braces_highlighting = warning
resharper_enforce_if_statement_braces_highlighting = warning
resharper_enforce_lock_statement_braces_highlighting = warning
resharper_enforce_using_statement_braces_highlighting = warning
resharper_enforce_while_statement_braces_highlighting = warning
resharper_event_never_subscribed_to_global_highlighting = hint
resharper_event_never_subscribed_to_local_highlighting = warning
resharper_field_can_be_made_read_only_global_highlighting = none
resharper_field_can_be_made_read_only_local_highlighting = warning
resharper_for_can_be_converted_to_foreach_highlighting = hint
resharper_for_statement_condition_is_true_highlighting = none
resharper_inconsistent_naming_highlighting = suggestion
resharper_incorrect_blank_lines_near_braces_highlighting = warning
resharper_inheritdoc_consider_usage_highlighting = hint
resharper_inline_out_variable_declaration_highlighting = hint
resharper_invoke_as_extension_method_highlighting = warning
resharper_join_declaration_and_initializer_highlighting = warning
resharper_join_null_check_with_usage_highlighting = hint
resharper_member_can_be_made_static_local_highlighting = none
resharper_member_can_be_private_global_highlighting = hint
resharper_member_can_be_private_local_highlighting = hint
resharper_member_can_be_protected_global_highlighting = hint
resharper_merge_cast_with_type_check_highlighting = hint
resharper_merge_conditional_expression_highlighting = warning
resharper_merge_into_negated_pattern_highlighting = none
resharper_merge_into_pattern_highlighting = none
resharper_merge_sequential_checks_highlighting = warning
resharper_method_has_async_overload_highlighting = warning
resharper_method_has_async_overload_with_cancellation_highlighting = warning
resharper_method_supports_cancellation_highlighting = warning
resharper_missing_blank_lines_highlighting = warning
resharper_missing_indent_highlighting = warning
resharper_missing_linebreak_highlighting = warning
resharper_missing_space_highlighting = warning
resharper_more_specific_foreach_variable_type_available_highlighting = warning
resharper_move_variable_declaration_inside_loop_condition_highlighting = hint
resharper_multiple_statements_on_one_line_highlighting = warning
resharper_multiple_type_members_on_one_line_highlighting = warning
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_nested_string_interpolation_highlighting = warning
resharper_not_accessed_field_global_highlighting = hint
resharper_not_overridden_in_specific_culture_highlighting = hint
resharper_outdent_is_off_prev_level_highlighting = warning
resharper_out_parameter_value_is_always_discarded_global_highlighting = hint
resharper_out_parameter_value_is_always_discarded_local_highlighting = hint
resharper_parameter_hides_member_highlighting = hint
resharper_parameter_only_used_for_precondition_check_global_highlighting = hint
resharper_parameter_only_used_for_precondition_check_local_highlighting = hint
resharper_partial_method_with_single_part_highlighting = hint
resharper_partial_type_with_single_part_highlighting = hint
resharper_possible_interface_member_ambiguity_highlighting = hint
resharper_possible_multiple_enumeration_highlighting = hint
resharper_property_can_be_made_init_only_global_highlighting = hint
resharper_property_can_be_made_init_only_local_highlighting = hint
resharper_public_constructor_in_abstract_class_highlighting = warning
resharper_razor_assembly_not_resolved_highlighting = warning
resharper_redundant_argument_default_value_highlighting = hint
resharper_redundant_array_creation_expression_highlighting = warning
resharper_redundant_attribute_parentheses_highlighting = warning
resharper_redundant_attribute_usage_property_highlighting = warning
resharper_redundant_base_qualifier_highlighting = warning
resharper_redundant_blank_lines_highlighting = warning
resharper_redundant_case_label_highlighting = hint
resharper_redundant_discard_designation_highlighting = warning
resharper_redundant_empty_object_creation_argument_list_highlighting = warning
resharper_redundant_explicit_params_array_creation_highlighting = warning
resharper_redundant_immediate_delegate_invocation_highlighting = warning
resharper_redundant_lambda_signature_parentheses_highlighting = warning
resharper_redundant_linebreak_highlighting = hint
resharper_redundant_readonly_modifier_highlighting = warning
resharper_redundant_space_highlighting = warning
resharper_redundant_string_interpolation_highlighting = warning
resharper_redundant_type_declaration_body_highlighting = hint
resharper_redundant_using_directive_highlighting = suggestion
resharper_redundant_verbatim_prefix_highlighting = warning
resharper_redundant_verbatim_string_prefix_highlighting = none
resharper_remove_redundant_or_statement_false_highlighting = warning
resharper_remove_redundant_or_statement_true_highlighting = warning
resharper_remove_to_list_1_highlighting = warning
resharper_remove_to_list_2_highlighting = warning
resharper_replace_with_first_or_default_1_highlighting = warning
resharper_replace_with_first_or_default_2_highlighting = warning
resharper_replace_with_first_or_default_3_highlighting = warning
resharper_replace_with_first_or_default_4_highlighting = warning
resharper_replace_with_last_or_default_1_highlighting = warning
resharper_replace_with_last_or_default_2_highlighting = warning
resharper_replace_with_last_or_default_3_highlighting = warning
resharper_replace_with_last_or_default_4_highlighting = warning
resharper_replace_with_of_type_1_highlighting = warning
resharper_replace_with_of_type_2_highlighting = warning
resharper_replace_with_of_type_3_highlighting = warning
resharper_replace_with_of_type_any_1_highlighting = warning
resharper_replace_with_of_type_any_2_highlighting = warning
resharper_replace_with_of_type_count_1_highlighting = warning
resharper_replace_with_of_type_count_2_highlighting = warning
resharper_replace_with_of_type_first_1_highlighting = warning
resharper_replace_with_of_type_first_2_highlighting = warning
resharper_replace_with_of_type_first_or_default_1_highlighting = warning
resharper_replace_with_of_type_first_or_default_2_highlighting = warning
resharper_replace_with_of_type_last_1_highlighting = warning
resharper_replace_with_of_type_last_2_highlighting = warning
resharper_replace_with_of_type_last_or_default_1_highlighting = warning
resharper_replace_with_of_type_last_or_default_2_highlighting = warning
resharper_replace_with_of_type_long_count_highlighting = warning
resharper_replace_with_of_type_single_1_highlighting = warning
resharper_replace_with_of_type_single_2_highlighting = warning
resharper_replace_with_of_type_single_or_default_1_highlighting = warning
resharper_replace_with_of_type_single_or_default_2_highlighting = warning
resharper_replace_with_of_type_where_highlighting = warning
resharper_replace_with_simple_assignment_false_highlighting = warning
resharper_replace_with_simple_assignment_true_highlighting = warning
resharper_replace_with_single_assignment_false_highlighting = warning
resharper_replace_with_single_assignment_true_highlighting = warning
resharper_replace_with_single_call_to_any_highlighting = warning
resharper_replace_with_single_call_to_count_highlighting = warning
resharper_replace_with_single_call_to_first_highlighting = warning
resharper_replace_with_single_call_to_first_or_default_highlighting = warning
resharper_replace_with_single_call_to_last_highlighting = warning
resharper_replace_with_single_call_to_last_or_default_highlighting = warning
resharper_replace_with_single_call_to_single_highlighting = warning
resharper_replace_with_single_call_to_single_or_default_highlighting = warning
resharper_replace_with_single_or_default_1_highlighting = warning
resharper_replace_with_single_or_default_2_highlighting = warning
resharper_replace_with_single_or_default_3_highlighting = warning
resharper_replace_with_single_or_default_4_highlighting = warning
resharper_separate_control_transfer_statement_highlighting = warning
resharper_string_ends_with_is_culture_specific_highlighting = warning
resharper_string_starts_with_is_culture_specific_highlighting = warning
resharper_struct_can_be_made_read_only_highlighting = warning
resharper_suggest_var_or_type_elsewhere_highlighting = hint
resharper_tabs_and_spaces_mismatch_highlighting = warning
resharper_tabs_are_disallowed_highlighting = warning
resharper_tabs_outside_indent_highlighting = warning
resharper_too_wide_local_variable_scope_highlighting = warning
resharper_try_cast_always_succeeds_highlighting = warning
resharper_unassigned_field_global_highlighting = hint
resharper_unnecessary_whitespace_highlighting = warning
resharper_unused_auto_property_accessor_global_highlighting = hint
resharper_unused_member_global_highlighting = hint
resharper_unused_member_hierarchy_global_highlighting = hint
resharper_unused_member_in_super_global_highlighting = hint
resharper_unused_member_local_highlighting = hint
resharper_unused_method_return_value_global_highlighting = hint
resharper_unused_method_return_value_local_highlighting = hint
resharper_unused_parameter_global_highlighting = hint
resharper_unused_parameter_local_highlighting = hint
resharper_unused_type_global_highlighting = hint
resharper_use_await_using_highlighting = none
resharper_use_collection_count_property_highlighting = warning
resharper_use_configure_await_false_for_async_disposable_highlighting = warning
resharper_use_format_specifier_in_format_string_highlighting = warning
resharper_use_index_from_end_expression_highlighting = warning
resharper_use_nameof_expression_highlighting = warning
resharper_use_name_of_instead_of_type_of_highlighting = warning
resharper_use_null_propagation_highlighting = warning
resharper_use_object_or_collection_initializer_highlighting = warning
resharper_use_pattern_matching_highlighting = warning
resharper_use_string_interpolation_highlighting = warning
resharper_use_utf8_string_literal_highlighting = hint
resharper_virtual_member_call_in_constructor_highlighting = hint
resharper_virtual_member_never_overridden_global_highlighting = hint
resharper_virtual_member_never_overridden_local_highlighting = warning
resharper_web_config_module_not_resolved_highlighting = warning
resharper_web_config_type_not_resolved_highlighting = warning
resharper_web_config_wrong_module_highlighting = warning
resharper_wrong_indent_size_highlighting = warning
[*.{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,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