-
Notifications
You must be signed in to change notification settings - Fork 4
/
.editorconfig
657 lines (580 loc) · 24.5 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
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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
root = true
# Editor config : https://editorconfig.org/
# VS reference: : https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/style-rules/
# Resharper properties : https://www.jetbrains.com/help/resharper/EditorConfig_Index.html
# VSCode : https://github.com/editorconfig/editorconfig-vscode
###############################
# Base settings #
###############################
[*]
indent_style = space
indent_size = 4
insert_final_newline = true
[*.{cs,csproj,tt}]
charset = utf-8-bom
end_of_line = crlf
indent_style = space
[*.{csproj,props,targets}]
indent_size = 2
indent_style = space
# Misc
[*.{js,json,yml}]
charset = utf-8
indent_size = 2
end_of_line = lf
[*.md]
charset = utf-8
indent_size = 2
end_of_line = lf
trim_trailing_whitespace = false
# Verify settings
[*.{received,verified}.{txt,xml,json}]
charset = utf-8-bom
end_of_line = lf
indent_size = unset
indent_style = unset
insert_final_newline = false
tab_width = unset
###############################
# .NET Coding Conventions #
###############################
[*.{cs,vb}]
# Organize usings
dotnet_sort_system_directives_first = true
# this. preferences
dotnet_style_qualification_for_field = false:suggestion
dotnet_style_qualification_for_property = false:suggestion
dotnet_style_qualification_for_method = false:suggestion
dotnet_style_qualification_for_event = false:suggestion
# Language keywords vs BCL types preferences
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
# Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
# Modifier preferences
dotnet_style_require_accessibility_modifiers = always:warning
dotnet_style_readonly_field = true:suggestion
# Expression-level preferences
dotnet_style_object_initializer = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent
dotnet_style_prefer_inferred_tuple_names = true:suggestion
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
dotnet_style_prefer_conditional_expression_over_return = true:silent
csharp_style_prefer_index_operator = false:suggestion
csharp_style_prefer_range_operator = false:suggestion
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
# Wrapping
dotnet_style_operator_placement_when_wrapping = beginning_of_line
# Other styling
dotnet_style_prefer_compound_assignment = true:error
dotnet_style_prefer_simplified_interpolation = true:suggestion
dotnet_style_namespace_match_folder = true:suggestion
###############################
# Naming Conventions #
###############################
# Style Definitions
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
dotnet_naming_style.underscore_lower_camel_case_style.capitalization = camel_case
dotnet_naming_style.underscore_lower_camel_case_style.required_prefix = _
# Private fields
dotnet_naming_rule.fields_should_be_underscore_lower_camel_case.severity = suggestion
dotnet_naming_rule.fields_should_be_underscore_lower_camel_case.symbols = private_fields
dotnet_naming_rule.fields_should_be_underscore_lower_camel_case.style = underscore_lower_camel_case_style
dotnet_naming_symbols.private_fields.applicable_kinds = field
dotnet_naming_symbols.private_fields.applicable_accessibilities = private
# Constants
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.constant_fields.applicable_kinds = field
dotnet_naming_symbols.constant_fields.applicable_accessibilities = *
dotnet_naming_symbols.constant_fields.required_modifiers = const
# Static readonly
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.symbols = static_readonly_fields
dotnet_naming_rule.static_readonly_fields_should_be_pascal_case.style = pascal_case_style
dotnet_naming_symbols.static_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.static_readonly_fields.applicable_accessibilities = *
dotnet_naming_symbols.static_readonly_fields.required_modifiers = static,readonly
dotnet_style_allow_multiple_blank_lines_experimental = true:silent
dotnet_style_allow_statement_immediately_after_block_experimental = true:silent
dotnet_code_quality_unused_parameters = all:suggestion
###############################
# Resharper/Rider C# #
###############################
[*.cs]
# Preserve Existing Formatting
keep_blank_lines_in_declarations = 1
remove_blank_lines_near_braces_in_declarations = true
keep_blank_lines_in_code = 1
remove_blank_lines_near_braces_in_code = true
# Blank Lines
blank_lines_around_namespace = 1
blank_lines_inside_namespace = 0
blank_lines_around_type = 1
blank_lines_inside_type = 0
blank_lines_around_field = 1
blank_lines_around_single_line_field = 0
blank_lines_around_property = 1
blank_lines_around_single_line_property = 1
blank_lines_around_auto_property = 1
blank_lines_around_single_line_auto_property = 1
blank_lines_around_invocable = 1
blank_lines_around_single_line_invocable = 1
blank_lines_around_local_method = 1
blank_lines_around_single_line_local_method = 1
blank_lines_around_region = 1
blank_lines_inside_region = 1
blank_lines_between_using_groups = 0
blank_lines_after_using_list = 1
blank_lines_after_start_comment = 1
blank_lines_before_single_line_comment = 0
blank_lines_after_control_transfer_statements = 1 #check for block or each
blank_lines_around_accessor = 0
blank_lines_around_single_line_accessor = 0
blank_lines_after_file_scoped_namespace_directive = 1
blank_lines_around_single_line_type = 1
blank_lines_after_block_statements = 1
blank_lines_after_case = 0
blank_lines_after_multiline_statements = 0
blank_lines_around_block_case_section = 0
blank_lines_around_multiline_case_section = 0
blank_lines_before_block_statements = 0
blank_lines_before_case = 0
blank_lines_before_control_transfer_statements = 0
blank_lines_before_multiline_statements = 0
# Braces Layout
brace_style = next_line
anonymous_method_declaration_braces = next_line
empty_block_style = multiline
indent_inside_namespace = true
use_continuous_indent_inside_initializer_braces = true
# Preserve Existing Formatting
simple_embedded_statement_style = do_not_change
simple_case_statement_style = do_not_change
simple_embedded_block_style = do_not_change
# Place on New Line
new_line_before_else = true
new_line_before_while = false
new_line_before_catch = true
new_line_before_finally = true
# Line Wrapping
wrap_parameters_style = chop_if_long
wrap_before_declaration_lpar = false
wrap_before_declaration_rpar = true
wrap_after_declaration_lpar = true
wrap_arguments_style = chop_if_long
wrap_before_invocation_lpar = false
wrap_before_invocation_rpar = true
wrap_after_invocation_lpar = true
wrap_before_comma = false
wrap_before_arrow_with_expressions = true
wrap_after_dot_in_method_calls = false
wrap_chained_method_calls = chop_if_long
wrap_before_extends_colon = true
wrap_extends_list_style = chop_if_long
wrap_for_stmt_header_style = chop_if_long
wrap_before_ternary_opsigns = true
wrap_ternary_expr_style = chop_if_long
wrap_linq_expressions = chop_if_long
wrap_before_binary_opsign = true
wrap_chained_binary_expressions = chop_if_long
wrap_before_binary_pattern_op = true
wrap_chained_binary_patterns = chop_if_long
force_chop_compound_if_expression = false
force_chop_compound_while_expression = false
force_chop_compound_do_expression = false
wrap_multiple_type_parameer_constraints_style = chop_if_long
max_initializer_elements_on_line = 0
wrap_object_and_collection_initializer_style = chop_always #check
wrap_array_initializer_style = chop_if_long #check
wrap_before_first_type_parameter_constraint = true
wrap_before_type_parameter_langle = false
wrap_before_eq = false
wrap_lines = true
max_line_length = 140
# Other
max_attribute_length_for_same_line = 38
place_abstract_accessorholder_on_single_line = true
place_simple_accessorholder_on_single_line = true
place_accessor_with_attrs_holder_on_single_line = true #check
place_simple_accessor_on_single_line = true
place_simple_method_on_single_line = false
place_simple_anonymousmethod_on_single_line = true
place_simple_initializer_on_single_line = false
place_type_attribute_on_same_line = false
place_method_attribute_on_same_line = false
place_accessorholder_attribute_on_same_line = false
place_simple_accessor_attribute_on_same_line = false
place_complex_accessor_attribute_on_same_line = false
place_field_attribute_on_same_line = false
place_constructor_initializer_on_same_line = true
place_type_constraints_on_same_line = false
allow_comment_after_lbrace = false
place_attribute_on_same_line = false
place_simple_list_pattern_on_single_line = true
keep_existing_linebreaks = true
keep_existing_attribute_arrangement = false
# Indentation
continuous_indent_multiplier = 1
use_continuous_indent_inside_parens = true
indent_switch_labels = true
indent_nested_usings_stmt = false
indent_nested_fixed_stmt = false
indent_nested_lock_stmt = false
indent_nested_for_stmt = false
indent_nested_foreach_stmt = false
indent_nested_while_stmt = false
indent_type_constraints = true
stick_comment = false
indent_method_decl_pars = inside
indent_invocation_pars = inside
indent_statement_pars = outside
indent_pars = inside
indent_typearg_angles = inside
indent_typeparam_angles = inside
indent_preprocessor_if = no_indent
indent_preprocessor_region = usual_indent
indent_preprocessor_other = no_indent
indent_braces_inside_statement_conditions = true
# Alignments
align_multiline_parameter = false
align_first_arg_by_paren = false
align_multiline_argument = false
align_multiline_extends_list = true
align_multiline_expression = false
align_multiline_binary_expressions_chain = false #check
align_multiline_calls_chain = false
align_multiline_array_and_object_initializer = false
indent_anonymous_method_block = false
align_multiline_for_stmt = true
align_multiple_declaration = false
align_multline_type_parameter_list = false
align_multline_type_parameter_constrains = false
align_linq_query = false
align_multiline_binary_patterns = false
align_multiline_list_pattern = false
align_multiline_property_pattern = false
align_multiline_statement_conditions = false
align_multiline_switch_expression = false
align_tuple_components = false
int_align_fix_in_adjacent = true
int_align_fields = false
int_align_properties = false
int_align_methods = false
int_align_parameters = false
int_align_variables = false
int_align_assignments = false
int_align_nested_ternary = false
int_align_invocations = false
int_align_binary_expressions = false
int_align_comments = false
int_align_property_patterns = false
int_align_switch_expressions = false
int_align_switch_sections = false
outdent_binary_ops = false
outdent_dots = false
outdent_binary_pattern_ops = false
outdent_statement_labels = false
outdent_commas = false
special_else_if_treatment = true
alignment_tab_fill_style = use_spaces
allow_far_alignment = false
use_indent_from_previous_element = true
# Spaces
extra_spaces = remove_all
space_before_method_call_parentheses = false
space_before_empty_method_call_parentheses = false
space_before_method_parentheses = false
space_before_empty_method_parentheses = false
space_before_array_access_brackets = false
space_before_if_parentheses = true
space_before_while_parentheses = true
space_before_catch_parentheses = true
space_before_switch_parentheses = true
space_before_for_parentheses = true
space_before_foreach_parentheses = true
space_before_using_parentheses = true
space_before_lock_parentheses = true
space_before_typeof_parentheses = false
space_before_default_parentheses = false
space_before_checked_parentheses = false
space_before_fixed_parentheses = true
space_before_sizeof_parentheses = false
space_before_nameof_parentheses = false
space_before_type_parameter_angle = false
space_before_type_argument_angle = false
space_around_binary_operator = true
space_around_member_access_operator = false
space_after_logical_not_op = false
space_after_unary_minus_op = false
space_after_unary_plus_op = false
space_after_ampersand_op = false
space_after_asterik_op = false
space_within_parentheses = false
space_between_method_declaration_parameter_list_parentheses = false
space_between_method_declaration_empty_parameter_list_parentheses = false
space_between_method_call_parameter_list_parentheses = false
space_between_method_call_empty_parameter_list_parentheses = false
space_within_array_access_brackets = false
space_between_typecast_parentheses = false
space_between_parentheses_of_control_flow_statements = false
space_within_typeof_parentheses = false
space_within_default_parentheses = false
space_within_checked_parentheses = false
space_within_sizeof_parentheses = false
space_within_nameof_parentheses = false
space_within_type_parameter_angles = false
space_within_type_argument_angles = false
space_before_ternary_quest = true
space_after_ternary_quest = true
space_before_ternary_colon = true
space_after_ternary_colon = true
space_after_cast = false
space_near_postfix_and_prefix_op = false
space_before_comma = false
space_after_comma = true
space_before_semicolon_in_for_statement = false
space_after_semicolon_in_for_statement = true
space_before_attribute_colon = false
space_after_attribute_colon = true
space_before_colon_in_inheritance_clause = true
space_after_colon_in_inheritance_clause = true
space_around_member_access_operator = false
space_around_lambda_arrow = true
space_before_singleline_accessorholder = true
space_in_singleline_accessorholder = true
space_between_accessors_in_singleline_property = true
space_between_attribute_sections = false #check
space_withing_empty_braces = true
space_in_singleline_method = true
space_in_singleline_anonymous_method = true
space_within_attribute_brackets = false
space_before_array_rank_brackets = false
space_within_array_rank_brackets = false
space_within_array_rank_empty_brackets = false
space_within_single_line_array_initializer_braces = true
space_before_pointer_asterik_declaration = false
space_before_semicolon = false
space_before_colon_in_case = false
space_before_nullable_mark = false
space_before_type_parameter_constraint_colon = true
space_after_type_parameter_constraint_colon = true
space_around_alias_eq = true
space_before_trailing_comment = true
space_after_operator_keyword = true
space_before_new_parentheses = false
space_between_keyword_and_expression = true
space_between_keyword_and_type = true
space_within_new_parentheses = false
space_after_attributes = true
space_after_colon_in_case = true
space_within_slice_pattern = true
space_within_empty_braces = true
###############################
# Resharper/Rider C# Syntax #
###############################
keep_existing_invocation_parens_arrangement = false
max_invocation_arguments_on_line = 3
# Instance members qualification
instance_members_qualify_declared_in = this_class, base_class
resharper_arrange_this_qualifier_highlighting = suggestion
# Static members qualification
static_members_qualify_members = none
static_members_qualify_with = declared_type
resharper_arrange_static_member_qualifier_highlighting = hint
# 'var' usage in declarations
prefer_explicit_discard_declaration = false
prefer_separate_deconstructed_variables_declaration = false
resharper_arrange_var_keywords_in_deconstructing_declaration_highlighting = suggestion
resharper_suggest_discard_declaration_var_style_highlighting = hint
# Usings
qualified_using_at_nested_scope = true
allow_alias = true
# Arguments
arguments_anonymous_function = positional
arguments_literal = positional
arguments_named = positional
arguments_other = positional
arguments_string_literal = positional
resharper_arguments_style_anonymous_function_highlighting = none
resharper_arguments_style_literal_highlighting = none
resharper_arguments_style_named_expression_highlighting = none
resharper_arguments_style_other_highlighting = none
resharper_arguments_style_string_literal_highlighting = none
# Parentheses
parentheses_redundancy_style = remove_if_not_clarifies_precedence
parentheses_non_obvious_operations = none, shift, bitwise_and, bitwise_exclusive_or, bitwise_inclusive_or, bitwise
parentheses_same_type_operations = false
resharper_arrange_missing_parentheses_highlighting = none
resharper_arrange_redundant_parentheses_highlighting = none
# Code body
local_function_body = block_body
# Attributes
force_attribute_style = separate
resharper_arrange_attributes_highlighting = none
# Trailing comma
trailing_comma_in_multiline_lists = false
trailing_comma_in_singleline_lists = false
resharper_arrange_trailing_comma_in_multiline_lists_highlighting = none
resharper_arrange_trailing_comma_in_singleline_lists_highlighting = none
# Object creation
object_creation_when_type_evident = target_typed
object_creation_when_type_not_evident = explicitly_typed
resharper_arrange_object_creation_when_type_evident_highlighting = suggestion
resharper_arrange_object_creation_when_type_not_evident_highlighting = hint
# Default value
default_value_when_type_evident = default_literal
default_value_when_type_not_evident = default_expression
resharper_arrange_default_value_when_type_evident_highlighting = suggestion
resharper_arrange_default_value_when_type_not_evident_highlighting = none
# Patterns
null_checking_pattern_style = not_null_pattern
resharper_arrange_null_checking_pattern_highlighting = hint
###############################
# MS C# Code Style Rules #
###############################
[*.cs]
# var preferences
csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_style_var_elsewhere = false:suggestion
# Expression-bodied members
csharp_style_expression_bodied_methods = false:none
csharp_style_expression_bodied_constructors = false:none
csharp_style_expression_bodied_operators = when_on_single_line:none
csharp_style_expression_bodied_properties = when_on_single_line:none
csharp_style_expression_bodied_indexers = when_on_single_line:none
csharp_style_expression_bodied_accessors = false:none
# Pattern-matching preferences
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
# Null-checking preferences
csharp_style_throw_expression = true:suggestion
csharp_style_conditional_delegate_call = true:suggestion
# Modifier preferences
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
# Expression-level preferences
csharp_prefer_braces = true:suggestion
csharp_style_deconstructed_variable_declaration = true:suggestion
csharp_prefer_simple_default_expression = true:suggestion
csharp_style_pattern_local_over_anonymous_function = true:suggestion
csharp_style_inlined_variable_declaration = true:suggestion
###############################
# MS C# Formatting Rules #
###############################
# Namespace
csharp_style_namespace_declarations = file_scoped:error
csharp_using_directive_placement = outside_namespace:error
# New line preferences
csharp_new_line_before_open_brace = all
csharp_new_line_before_else = true
csharp_new_line_before_catch = true
csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_case_contents = true
csharp_indent_switch_labels = true
csharp_indent_labels = flush_left
csharp_indent_block_contents = true
csharp_indent_braces = false
csharp_indent_case_contents_when_block = true
# Space preferences
csharp_space_after_cast = false
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
csharp_space_between_parentheses = false
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_around_binary_operators = before_and_after
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
csharp_space_around_declaration_statements = false
csharp_space_before_open_square_brackets = false
csharp_space_between_empty_square_brackets = false
csharp_space_between_square_brackets = false
csharp_space_after_comma = true
csharp_space_after_dot = false
csharp_space_after_semicolon_in_for_statement = true
csharp_space_before_comma = false
csharp_space_before_dot = false
csharp_space_before_semicolon_in_for_statement = false
# Wrapping preferences
csharp_preserve_single_line_statements = true
csharp_preserve_single_line_blocks = true
# Styling
csharp_style_prefer_index_operator = false:suggestion
csharp_style_prefer_range_operator = false:suggestion
csharp_prefer_simple_using_statement = true:suggestion
csharp_style_prefer_method_group_conversion = true:suggestion
csharp_style_prefer_top_level_statements = true:silent
csharp_style_expression_bodied_lambdas = when_on_single_line:silent
csharp_style_expression_bodied_local_functions = when_on_single_line:silent
csharp_style_prefer_null_check_over_type_check = true:error
csharp_style_prefer_local_over_anonymous_function = true:suggestion
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
csharp_style_prefer_tuple_swap = true:suggestion
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_prefer_primary_constructors = false:suggestion
dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
csharp_style_unused_value_expression_statement_preference = discard_variable:silent
csharp_prefer_static_local_function = true:suggestion
csharp_style_prefer_readonly_struct = true:suggestion
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent
csharp_style_prefer_pattern_matching = true:silent
csharp_style_prefer_switch_expression = true:suggestion
csharp_style_prefer_not_pattern = true:suggestion
csharp_style_prefer_extended_property_pattern = true:suggestion
###############################
# Resharper/Rider XML doc #
###############################
# XML documentation
# Line wrapping
xmldoc_max_line_length = 140
xmldoc_wrap_lines = false
xmldoc_wrap_tags_and_pi = false
# Processing instructions
xmldoc_blank_line_after_pi = false
xmldoc_pi_attributes_indent = single_indent
xmldoc_pi_attribute_style = do_not_touch
xmldoc_spaces_around_eq_in_pi_attribute = false
xmldoc_space_after_last_pi_attribute = true
# Inside of tag header
xmldoc_attribute_indent = single_indent
xmldoc_attribute_style = do_not_touch
xmldoc_spaces_around_eq_in_attribute = false
xmldoc_space_after_last_attribute = false
xmldoc_space_before_self_closing = true
# Tag content
wrap_text = true
xmldoc_indent_text = zero_indent
xmldoc_indent_child_elements = do_not_touch
xmldoc_keep_user_linebreaks = true
xmldoc_linebreaks_inside_tags_for_elements_with_child_elements = true
xmldoc_linebreaks_inside_tags_for_multiline_elements = true
xmldoc_spaces_inside_tags = false
xmldoc_wrap_around_elements = true
# Around tags
xmldoc_linebreak_before_elements = summary,remarks,example,returns,param,typeparam,value,para
xmldoc_linebreak_before_multiline_elements = true
xmldoc_linebreak_before_singleline_elements = false
xmldoc_max_blank_lines_between_tags = 0