-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy path.editorconfig
More file actions
594 lines (494 loc) · 38.2 KB
/
Copy path.editorconfig
File metadata and controls
594 lines (494 loc) · 38.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
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
###############################
# Core EditorConfig Options #
###############################
root = true
# All files
[*]
indent_style = space
tab_width = 4
# Code files
[*.{cs,csx,vb,vbx}]
indent_size = 4
charset = utf-8
trim_trailing_whitespace = true
end_of_line = crlf
insert_final_newline = true
max_line_length = 120
# Xml project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 4
# Xml config files
[*.{xml,props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct}]
indent_size = 2
# JSON files
[*.json]
indent_size = 2
# YAML files
[*.{yml,yaml}]
indent_size = 2
###############################
# .NET Coding Conventions #
###############################
#### C# Formatting Rules ####
[*.cs]
# Null-checking preferences
csharp_style_throw_expression = true:suggestion
csharp_style_conditional_delegate_call = true:suggestion
# Modifier preferences
# require braces to be on a new line for control_blocks, types, and methods (also known as "Allman" style)
csharp_new_line_before_open_brace = all
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion
csharp_new_line_before_catch = true
csharp_new_line_before_else = true:suggestion
csharp_new_line_before_finally = true:suggestion
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_between_query_expression_clauses = true
# Indentation preferences
csharp_indent_block_contents = true
csharp_indent_braces = false
csharp_indent_case_contents = true
csharp_indent_case_contents_when_block = false
csharp_indent_labels = one_less_than_current
csharp_indent_switch_labels = true
# Space preferences
csharp_space_after_comma = true
csharp_space_after_dot = false
csharp_space_after_semicolon_in_for_statement = true
csharp_space_around_binary_operators = before_and_after
csharp_space_before_comma = false
csharp_space_before_dot = false
csharp_space_before_open_square_brackets = false
csharp_space_before_semicolon_in_for_statement = false
csharp_space_between_empty_square_brackets = false
csharp_space_between_method_declaration_name_and_open_parenthesis = false
csharp_space_between_parentheses = false
csharp_space_between_square_brackets = false
#Formatting - organize using options
dotnet_sort_system_directives_first = true
dotnet_separate_import_directive_groups = false
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_using_directive_placement = outside_namespace:suggestion
#Formatting - spacing options
csharp_space_after_cast = false
csharp_space_after_colon_in_inheritance_clause = true
csharp_space_after_keywords_in_control_flow_statements = true
csharp_space_before_colon_in_inheritance_clause = true
csharp_space_between_method_call_empty_parameter_list_parentheses = false
csharp_space_between_method_call_name_and_opening_parenthesis = false
csharp_space_between_method_call_parameter_list_parentheses = false
csharp_space_between_method_declaration_empty_parameter_list_parentheses = false
csharp_space_between_method_declaration_parameter_list_parentheses = false
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
#Formatting - wrapping options
csharp_preserve_single_line_blocks = true
csharp_preserve_single_line_statements = false
dotnet_style_allow_trailing_commas = false:suggestion
#Pattern - matching preferences
csharp_style_pattern_local_over_anonymous_function = true:suggestion
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion
#Style - expression bodied member options
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_indexers = true:silent
csharp_style_expression_bodied_accessors = true:suggestion
csharp_style_expression_bodied_constructors = false:suggestion
csharp_style_expression_bodied_methods = false:suggestion
csharp_style_expression_bodied_properties = true:silent
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = when_on_single_line:suggestion
#Style - expression level options
csharp_prefer_braces = true:suggestion
csharp_style_deconstructed_variable_declaration = true:suggestion
csharp_prefer_simple_default_expression = true:suggestion
csharp_style_inlined_variable_declaration = false:suggestion
csharp_prefer_simple_using_statement = false:suggestion
csharp_style_prefer_tuple_swap = true:suggestion
csharp_prefer_static_local_function = true:suggestion
csharp_prefer_static_anonymous_function = true:suggestion
#Style - implicit and explicit types
csharp_style_var_for_built_in_types = false:suggestion
csharp_style_var_when_type_is_apparent = true:suggestion
csharp_style_var_elsewhere = false:suggestion
# Style - misc
csharp_style_prefer_null_check_over_type_check = true:suggestion
csharp_style_prefer_local_over_anonymous_function = true:suggestion
csharp_style_prefer_index_operator = true:suggestion
csharp_style_prefer_range_operator = true:suggestion
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion
csharp_style_prefer_implicitly_typed_lambda_expression = true:suggestion
csharp_style_prefer_unbound_generic_type_in_nameof = true:suggestion
csharp_style_prefer_utf8_string_literals = true:suggestion
csharp_style_unused_value_assignment_preference = discard_variable:suggestion
csharp_style_prefer_readonly_struct = true:suggestion
csharp_style_prefer_readonly_struct_member = true:suggestion
# Style - pattern matching
csharp_style_prefer_switch_expression = false:suggestion
csharp_style_prefer_pattern_matching = true:silent
csharp_style_prefer_not_pattern = true:suggestion
csharp_style_prefer_extended_property_pattern = true:suggestion
# Never
dotnet_style_namespace_match_folder = false:none
# Enable eventually
dotnet_code_quality_unused_parameters = all:silent
# Style - language keyword and framework type options
#prefer the language keyword for local variables, method parameters, and class members,
#instead of the type name, for types that have a keyword to represent them
dotnet_style_predefined_type_for_locals_parameters_members = true:suggestion
dotnet_style_predefined_type_for_member_access = true:suggestion
dotnet_style_allow_multiple_blank_lines_experimental = false:suggestion
dotnet_style_allow_statement_immediately_after_block_experimental = true:suggestion
# Style - qualification options
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
# Style - Parentheses preferences
dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:suggestion
dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
dotnet_style_operator_placement_when_wrapping = beginning_of_line
# Style - Modifier preferences
dotnet_style_require_accessibility_modifiers = for_non_interface_members:suggestion
dotnet_style_readonly_field = true:suggestion
# Style - 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:suggestion
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:suggestion
dotnet_style_prefer_conditional_expression_over_return = false:silent
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_compound_assignment = true:suggestion
dotnet_style_prefer_simplified_interpolation = true:suggestion
dotnet_style_prefer_collection_expression = when_types_loosely_match:suggestion
csharp_style_unused_value_expression_statement_preference = unused_local_variable:suggestion
# 'using' directive preferences
csharp_using_directive_placement = outside_namespace:suggestion
csharp_style_namespace_declarations = block_scoped:suggestion
# Naming rules
# Async methods should have "Async" suffix
dotnet_naming_rule.async_methods_end_in_async.severity = warning
dotnet_naming_rule.async_methods_end_in_async.symbols = any_async_methods
dotnet_naming_rule.async_methods_end_in_async.style = end_in_async
dotnet_naming_symbols.any_async_methods.applicable_kinds = method, interface
dotnet_naming_symbols.any_async_methods.applicable_accessibilities = *
dotnet_naming_symbols.any_async_methods.required_modifiers = async
dotnet_naming_style.end_in_async.required_suffix = Async
dotnet_naming_style.end_in_async.capitalization = pascal_case
# Private Constants are PascalCase and start with k
dotnet_naming_rule.constants_private_should_start_with_k.severity = suggestion
dotnet_naming_rule.constants_private_should_start_with_k.symbols = constants_with_k
dotnet_naming_rule.constants_private_should_start_with_k.style = constants_with_k_style
dotnet_naming_symbols.constants_with_k.applicable_kinds = field, local
dotnet_naming_symbols.constants_with_k.applicable_accessibilities = private, protected, private_protected, protected_friend
dotnet_naming_symbols.constants_with_k.required_modifiers = const
dotnet_naming_style.constants_with_k_style.capitalization = pascal_case
dotnet_naming_style.constants_with_k_style.required_prefix = k
# Constants are PascalCase
dotnet_naming_rule.constants_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
dotnet_naming_rule.constants_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.constants.applicable_kinds = field, local
dotnet_naming_symbols.constants.applicable_accessibilities = public, internal, protected_internal
dotnet_naming_symbols.constants.required_modifiers = const
dotnet_naming_style.constant_style.capitalization = pascal_case
# Non-private readonly fields are PascalCase
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.symbols = non_private_readonly_fields
dotnet_naming_rule.non_private_readonly_fields_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.non_private_readonly_fields.applicable_kinds = field
dotnet_naming_symbols.non_private_readonly_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.non_private_readonly_fields.required_modifiers = readonly
dotnet_naming_style.non_private_readonly_field_style.capitalization = pascal_case
# Non-private static fields are PascalCase
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
# Private static fields are camelCase and start with s_
dotnet_naming_rule.static_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.static_fields_should_be_camel_case.symbols = static_fields
dotnet_naming_rule.static_fields_should_be_camel_case.style = static_field_style
dotnet_naming_symbols.static_fields.applicable_kinds = field
dotnet_naming_symbols.static_fields.applicable_accessibilities = private, protected, private_protected, protected_friend
dotnet_naming_symbols.static_fields.required_modifiers = static
dotnet_naming_style.static_field_style.capitalization = camel_case
dotnet_naming_style.static_field_style.required_prefix = s_
# Private instance fields are camelCase and start with m_
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
dotnet_naming_rule.instance_fields_should_be_camel_case.style = instance_field_style
dotnet_naming_symbols.instance_fields.applicable_kinds = field
dotnet_naming_symbols.instance_fields.applicable_accessibilities = private, protected, private_protected, protected_friend
dotnet_naming_style.instance_field_style.capitalization = camel_case
dotnet_naming_style.instance_field_style.required_prefix = m_
# Private event fields are PascalCase and start with m_
dotnet_naming_rule.instance_events_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.instance_events_should_be_pascal_case.symbols = instance_events
dotnet_naming_rule.instance_events_should_be_pascal_case.style = instance_events_style
dotnet_naming_symbols.instance_events.applicable_kinds = event
dotnet_naming_symbols.instance_events.applicable_accessibilities = private, protected, private_protected, protected_friend
dotnet_naming_style.instance_events_style.capitalization = pascal_case
dotnet_naming_style.instance_events_style.required_prefix = m_
# Locals and parameters are camelCase
dotnet_naming_rule.locals_should_be_camel_case.severity = suggestion
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
dotnet_naming_style.camel_case_style.capitalization = camel_case
# Local functions are PascalCase
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = local_functions
dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
dotnet_naming_style.local_function_style.capitalization = pascal_case
# By default, name items with PascalCase
dotnet_naming_rule.members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.members_should_be_pascal_case.symbols = all_members
dotnet_naming_rule.members_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_symbols.all_members.applicable_kinds = *
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
# Diagnostic settings (windows only)
dotnet_analyzer_diagnostic.category-style.severity = suggestion
dotnet_analyzer_diagnostic.category-globalization.severity = silent
dotnet_analyzer_diagnostic.category-design.severity = suggestion
dotnet_analyzer_diagnostic.category-reliability.severity = warning
dotnet_analyzer_diagnostic.category-performance.severity = warning
dotnet_analyzer_diagnostic.category-security.severity = warning
# Suggest only non breaking warnings
# CA1805: Do not initialize unnecessarily.
dotnet_diagnostic.CA1805.severity = silent
dotnet_code_quality.CA1805.api_surface = private, internal
# CA1822: Mark members as static.
dotnet_diagnostic.CA1822.severity = suggestion
dotnet_code_quality.CA1822.api_surface = private, internal
# CA3075: Insecure DTD processing in XML
dotnet_diagnostic.CA3075.severity = warning
dotnet_diagnostic.CA3077.severity = warning
# CA2007: Do not directly await a Task
dotnet_diagnostic.CA2007.severity = silent
# CA2016: Forward the CancellationToken parameter to methods that take one
dotnet_diagnostic.CA2016.severity = warning
# IDE0049: Simplify Names
dotnet_diagnostic.IDE0049.severity = suggestion
# CA1507: Use nameof in place of string
dotnet_diagnostic.CA1507.severity = warning
# CA1711: Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity = none
# IDE1005: Simplify delegate invocation
dotnet_diagnostic.IDE1005.severity = warning
# IDE0046: Convert to conditional expression
dotnet_diagnostic.IDE0046.severity = silent
# IDE0130: Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = none
# CA1305: Specify IFormatProvider
dotnet_diagnostic.CA1305.severity = silent
# CA1819: Properties should not return arrays
dotnet_diagnostic.CA1819.severity = silent
# CA1721: The property name is confusing given the existence of another method with the same name.
dotnet_diagnostic.CA1721.severity = silent
# CA2014: Do not use stackalloc in loops
dotnet_diagnostic.CA2014.severity = error
# IDE0058: Expression value is never used
dotnet_diagnostic.IDE0058.severity = silent
# IDE0290: Use primary constructor
csharp_style_prefer_primary_constructors = false:silent
# IDE0045: Convert to conditional expression
dotnet_diagnostic.IDE0045.severity = none
# IDE0065: Using directives must be placed inside a namespace declaration
dotnet_diagnostic.IDE0065.severity = none
csharp_prefer_system_threading_lock = true:suggestion
# IDE0072: Add missing cases
dotnet_diagnostic.IDE0072.severity = none
dotnet_diagnostic.IDE0010.severity = none
# CA1510: Use throw helpers - enable when we have a polyfill
dotnet_diagnostic.CA1510.severity = none
dotnet_diagnostic.CA1511.severity = none
dotnet_diagnostic.CA1512.severity = none
dotnet_diagnostic.CA1513.severity = none
# Roslynator settings
dotnet_analyzer_diagnostic.category-roslynator.severity = suggestion
roslynator_refactorings.enabled = true
roslynator_compiler_diagnostic_fixes.enabled = true
roslynator_tab_length = 4
roslynator_max_line_length = 160
roslynator_blank_line_between_using_directives = never
roslynator_blank_line_between_single_line_accessors = false
roslynator_block_braces_style = multi_line
roslynator_binary_operator_new_line = after
roslynator_null_conditional_operator_new_line = after
roslynator_trailing_comma_style = omit
roslynator_blank_line_between_switch_sections = omit
roslynator_object_creation_parentheses_style = omit
roslynator_conditional_operator_condition_parentheses_style = omit
roslynator_empty_string_style = field
roslynator_configure_await = true
roslynator_infinite_loop_style = while
roslynator_doc_comment_summary_style = multi_line
#roslynator_enum_flag_value_style = decimal_number
#roslynator_null_check_style = pattern_matching
dotnet_diagnostic.RCS0003.severity = suggestion
dotnet_diagnostic.RCS0006.severity = suggestion
dotnet_diagnostic.RCS0009.severity = suggestion
dotnet_diagnostic.RCS0010.severity = suggestion
dotnet_diagnostic.RCS0011.severity = suggestion
dotnet_diagnostic.RCS0015.severity = suggestion
dotnet_diagnostic.RCS0021.severity = suggestion
dotnet_diagnostic.RCS0023.severity = suggestion
dotnet_diagnostic.RCS0025.severity = suggestion
dotnet_diagnostic.RCS0027.severity = suggestion
dotnet_diagnostic.RCS0029.severity = suggestion
dotnet_diagnostic.RCS0031.severity = suggestion
dotnet_diagnostic.RCS0033.severity = suggestion
dotnet_diagnostic.RCS0034.severity = suggestion
dotnet_diagnostic.RCS0041.severity = suggestion
dotnet_diagnostic.RCS0042.severity = suggestion
dotnet_diagnostic.RCS0046.severity = suggestion
dotnet_diagnostic.RCS0049.severity = suggestion
dotnet_diagnostic.RCS0050.severity = suggestion
dotnet_diagnostic.RCS0051.severity = suggestion
#dotnet_diagnostic.RCS0054.severity = suggestion # Call chain formatting
dotnet_diagnostic.RCS0055.severity = suggestion
dotnet_diagnostic.RCS0056.severity = suggestion
dotnet_diagnostic.RCS0059.severity = suggestion
dotnet_diagnostic.RCS0061.severity = suggestion
dotnet_diagnostic.RCS0063.severity = suggestion
dotnet_diagnostic.RCS1002.severity = none
dotnet_diagnostic.RCS1004.severity = none
dotnet_diagnostic.RCS1005.severity = suggestion
dotnet_diagnostic.RCS1006.severity = suggestion
dotnet_diagnostic.RCS1007.severity = suggestion
dotnet_diagnostic.RCS1013.severity = suggestion
dotnet_diagnostic.RCS1015.severity = suggestion
dotnet_diagnostic.RCS1019.severity = none
dotnet_diagnostic.RCS1020.severity = suggestion
dotnet_diagnostic.RCS1031.severity = suggestion
dotnet_diagnostic.RCS1032.severity = suggestion
dotnet_diagnostic.RCS1033.severity = suggestion
dotnet_diagnostic.RCS1034.severity = suggestion
dotnet_diagnostic.RCS1037.severity = suggestion
dotnet_diagnostic.RCS1039.severity = suggestion
dotnet_diagnostic.RCS1042.severity = suggestion
dotnet_diagnostic.RCS1043.severity = suggestion
dotnet_diagnostic.RCS1044.severity = suggestion
dotnet_diagnostic.RCS1046.severity = suggestion
dotnet_diagnostic.RCS1047.severity = suggestion
dotnet_diagnostic.RCS1049.severity = suggestion
dotnet_diagnostic.RCS1050.severity = suggestion
dotnet_diagnostic.RCS1051.severity = suggestion
dotnet_diagnostic.RCS1052.severity = suggestion
dotnet_diagnostic.RCS1055.severity = suggestion
dotnet_diagnostic.RCS1058.severity = suggestion
dotnet_diagnostic.RCS1061.severity = suggestion
dotnet_diagnostic.RCS1068.severity = suggestion
dotnet_diagnostic.RCS1069.severity = suggestion
dotnet_diagnostic.RCS1070.severity = suggestion
dotnet_diagnostic.RCS1071.severity = suggestion
dotnet_diagnostic.RCS1074.severity = suggestion
dotnet_diagnostic.RCS1077.severity = suggestion
dotnet_diagnostic.RCS1078.severity = suggestion
dotnet_diagnostic.RCS1080.severity = suggestion
dotnet_diagnostic.RCS1081.severity = suggestion
dotnet_diagnostic.RCS1084.severity = suggestion
dotnet_diagnostic.RCS1085.severity = suggestion
dotnet_diagnostic.RCS1089.severity = suggestion
dotnet_diagnostic.RCS1090.severity = silent
dotnet_diagnostic.RCS1091.severity = suggestion
dotnet_diagnostic.RCS1094.severity = suggestion
dotnet_diagnostic.RCS1097.severity = suggestion
dotnet_diagnostic.RCS1098.severity = suggestion
dotnet_diagnostic.RCS1099.severity = suggestion
dotnet_diagnostic.RCS1112.severity = suggestion
dotnet_diagnostic.RCS1124.severity = suggestion
dotnet_diagnostic.RCS1126.severity = suggestion
dotnet_diagnostic.RCS1129.severity = suggestion
dotnet_diagnostic.RCS1132.severity = suggestion
dotnet_diagnostic.RCS1133.severity = suggestion
dotnet_diagnostic.RCS1134.severity = suggestion
dotnet_diagnostic.RCS1136.severity = suggestion
dotnet_diagnostic.RCS1139.severity = suggestion
dotnet_diagnostic.RCS1140.severity = suggestion
dotnet_diagnostic.RCS1141.severity = silent
dotnet_diagnostic.RCS1142.severity = suggestion
dotnet_diagnostic.RCS1143.severity = suggestion
dotnet_diagnostic.RCS1145.severity = suggestion
dotnet_diagnostic.RCS1146.severity = none
dotnet_diagnostic.RCS1151.severity = suggestion
dotnet_diagnostic.RCS1154.severity = suggestion
dotnet_diagnostic.RCS1156.severity = suggestion
dotnet_diagnostic.RCS1160.severity = suggestion
dotnet_diagnostic.RCS1161.severity = none
dotnet_diagnostic.RCS1166.severity = suggestion
dotnet_diagnostic.RCS1169.severity = suggestion
dotnet_diagnostic.RCS1170.severity = suggestion
dotnet_diagnostic.RCS1174.severity = suggestion
dotnet_diagnostic.RCS1181.severity = suggestion
dotnet_diagnostic.RCS1182.severity = suggestion
dotnet_diagnostic.RCS1187.severity = suggestion
dotnet_diagnostic.RCS1188.severity = suggestion
dotnet_diagnostic.RCS1190.severity = suggestion
#dotnet_diagnostic.RCS1198.severity = suggestion # Avoid boxing
dotnet_diagnostic.RCS1201.severity = suggestion
dotnet_diagnostic.RCS1202.severity = suggestion
dotnet_diagnostic.RCS1207.severity = suggestion
dotnet_diagnostic.RCS1211.severity = suggestion
dotnet_diagnostic.RCS1214.severity = suggestion
dotnet_diagnostic.RCS1225.severity = suggestion
dotnet_diagnostic.RCS1227.severity = suggestion
dotnet_diagnostic.RCS1228.severity = none
dotnet_diagnostic.RCS1229.severity = suggestion
dotnet_diagnostic.RCS1237.severity = none
dotnet_diagnostic.RCS1238.severity = none
dotnet_diagnostic.RCS1240.severity = suggestion
dotnet_diagnostic.RCS1241.severity = none
dotnet_diagnostic.RCS1244.severity = suggestion
dotnet_diagnostic.RCS1246.severity = suggestion
dotnet_diagnostic.RCS1249.severity = suggestion
dotnet_diagnostic.RCS1252.severity = suggestion
dotnet_diagnostic.RCS1257.severity = suggestion
dotnet_diagnostic.RCS1258.severity = suggestion
dotnet_diagnostic.RCS1259.severity = suggestion
dotnet_diagnostic.RCS1260.severity = suggestion
dotnet_diagnostic.RCS1262.severity = suggestion
dotnet_diagnostic.RCS1266.severity = suggestion
# RCS1208: Reduce 'if' nesting
dotnet_diagnostic.RCS1208.severity = suggestion
# RCS1261: Resource can be disposed asynchronously
dotnet_diagnostic.RCS1261.severity = suggestion
# RCS1168: Parameter name differs from base name
dotnet_diagnostic.RCS1168.severity = suggestion
# RCS1163: Unused parameter
dotnet_diagnostic.RCS1163.severity = none
dotnet_diagnostic.IDE0060.severity = none
# exclude generated code
# CA1859: Use concrete types when possible for improved performance
dotnet_diagnostic.CA1859.severity = silent
# CA1861: Avoid constant arrays as arguments
dotnet_diagnostic.CA1861.severity = silent
# CA1848: Use the LoggerMessage delegates
dotnet_diagnostic.CA1848.severity = suggestion
[**/Generated/*.cs]
generated_code = true
dotnet_diagnostic.severity = none
dotnet_analyzer.severity = none
#dotnet_analyzer_diagnostic.category-roslynator.severity = none
[**/*.{Classes,DataTypes,Constants,StatusCodes,Attributes}.cs]
generated_code = true
dotnet_diagnostic.severity = none
dotnet_analyzer.severity = none
#dotnet_analyzer_diagnostic.category-roslynator.severity = none