-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.editorConfig
2478 lines (1749 loc) · 87 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
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
####################################################################################################
# dotNetDave's (David McCarter) Editor Config - dotNetTips.com
# Updates to this file are posted quarterly at: https://bit.ly/EditorConfig5
# Updated November 1, 2024
# NEW code performance book is available at: https://bit.ly/DotNetCodePerf4
# NEW coding standards book is available at: https://bit.ly/CodingStandards8
# Rockin' the Code World with dotNetDave: https://bit.ly/RockinCodeWorldShows
####################################################################################################
root = true
# All Files
[*]
charset = utf-8
csharp_indent_labels = one_less_than_current
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_prefer_readonly_struct_member = true:suggestion
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_utf8_string_literals = true:suggestion
end_of_line = crlf
indent_size = 4
indent_style = tab
insert_final_newline = true
tab_width = 4
trim_trailing_whitespace = true
# Nullability settings
# Enable nullable reference types
dotnet_build_property.Nullable = enable
# Enable or disable the analyzers
dotnet_analyzer_diagnostic.severity = warning
# Visual Studio XML Project Files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,projitems,shproj}]
indent_size = 2
# XML Configuration Files
[*.{props,targets,ruleset,config,nuspec,resx,vsixmanifest,vsct,xml,stylecop}]
indent_size = 2
# JSON Files
[*.{json,json5,webmanifest}]
indent_size = 2
# YAML Files
[*.{yml,yaml}]
indent_size = 2
# Markdown Files
[*.{md,mdx}]
trim_trailing_whitespace = false
# Bash Files
[*.sh]
end_of_line = lf
# Batch Files
[*.{cmd,bat}]
end_of_line = crlf
# Web Files
[*.{htm,html,js,jsm,ts,tsx,cjs,cts,ctsx,mjs,mts,mtsx,css,sass,scss,less,pcss,svg,vue}]
indent_size = 2
insert_final_newline = true
# Makefiles
[Makefile]
indent_style = tab
##########################################
# Default .NET Code Style Severities
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/configuration-options#scope
##########################################
##########################################
# Language Rules
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules
##########################################
# .NET Style Rules
# https://docs.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/language-rules#net-style-rules
[*.{cs,csx,cake,vb,vbx}]
# Non-private static fields are PascalCase
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.severity = warning
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_rule.non_private_static_fields_should_be_pascal_case.symbols = non_private_static_fields
dotnet_naming_symbols.non_private_static_fields.applicable_accessibilities = public, protected, internal, protected_internal, private_protected
dotnet_naming_symbols.non_private_static_fields.applicable_kinds = field
dotnet_naming_symbols.non_private_static_fields.required_modifiers = static
dotnet_naming_style.non_private_static_field_style.capitalization = pascal_case
#Constants are PascalCase
dotnet_naming_rule.constants_should_be_pascal_case.severity = warning
dotnet_naming_rule.constants_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_rule.constants_should_be_pascal_case.symbols = constants
dotnet_naming_symbols.constants.required_modifiers = const
dotnet_naming_symbols.constants.applicable_kinds = field, local
dotnet_naming_style.constant_style.capitalization = pascal_case
#Locals and parameters are camelCase
dotnet_naming_rule.locals_should_be_camel_case.severity = warning
dotnet_naming_rule.locals_should_be_camel_case.style = camel_case_style
dotnet_naming_rule.locals_should_be_camel_case.symbols = locals_and_parameters
# camel_case_style - Define the camelCase style
dotnet_naming_style.camel_case_style.capitalization = camel_case
dotnet_naming_style.static_field_style.required_prefix = s_
dotnet_naming_symbols.locals_and_parameters.applicable_kinds = parameter, local
dotnet_naming_symbols.static_fields.required_modifiers = static
# first_upper_style - The first character must start with an upper-case character
dotnet_naming_style.first_upper_style.capitalization = first_word_upper
# prefix_interface_with_i_style - Interfaces must be PascalCase and the first character of an interface must be an 'I'
dotnet_naming_style.prefix_interface_with_i_style.capitalization = pascal_case
dotnet_naming_style.prefix_interface_with_i_style.required_prefix = I
# prefix_type_parameters_with_t_style - Generic Type Parameters must be PascalCase and the first character must be a 'T'
dotnet_naming_style.prefix_type_parameters_with_t_style.capitalization = pascal_case
dotnet_naming_style.prefix_type_parameters_with_t_style.required_prefix = T
# disallowed_style - Anything that has this style applied is marked as disallowed
dotnet_naming_style.disallowed_style.capitalization = pascal_case
dotnet_naming_style.disallowed_style.required_prefix = ____RULE_VIOLATION____
dotnet_naming_style.disallowed_style.required_suffix = ____RULE_VIOLATION____
# internal_error_style - This style should never occur... if it does, it indicates a bug in file or in the parser using the file
dotnet_naming_style.internal_error_style.capitalization = pascal_case
dotnet_naming_style.internal_error_style.required_prefix = ____INTERNAL_ERROR____
dotnet_naming_style.internal_error_style.required_suffix = ____INTERNAL_ERROR____
# Simplify interpolation
dotnet_diagnostic.IDE0071.severity = warning
# Allow multiple blank lines
dotnet_diagnostic.IDE2000.severity = silent
# All public/protected/protected_internal constant fields must be PascalCase
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.severity = warning
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.style = non_private_static_field_style
dotnet_naming_rule.public_protected_constant_fields_must_be_pascal_case_rule.symbols = public_protected_constant_fields_group
dotnet_naming_symbols.public_protected_constant_fields_group.applicable_accessibilities = public, protected, protected_internal
dotnet_naming_symbols.public_protected_constant_fields_group.applicable_kinds = field
dotnet_naming_symbols.public_protected_constant_fields_group.required_modifiers = const
# All public/protected/protected_internal static readonly fields must be PascalCase
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.severity = warning
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.style = non_private_static_field_style
dotnet_naming_rule.public_protected_static_readonly_fields_must_be_pascal_case_rule.symbols = public_protected_static_readonly_fields_group
dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_accessibilities = public, protected, protected_internal
dotnet_naming_symbols.public_protected_static_readonly_fields_group.applicable_kinds = field
dotnet_naming_symbols.public_protected_static_readonly_fields_group.required_modifiers = static, readonly
# No other public/protected/protected_internal fields are allowed
# https://docs.microsoft.com/dotnet/standard/design-guidelines/field
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.severity = error
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.style = disallowed_style
dotnet_naming_rule.other_public_protected_fields_disallowed_rule.symbols = other_public_protected_fields_group
dotnet_naming_symbols.other_public_protected_fields_group.applicable_accessibilities = public, protected, protected_internal
dotnet_naming_symbols.other_public_protected_fields_group.applicable_kinds = field
##########################################
# StyleCop Field Naming Rules
# Naming rules for fields follow the StyleCop analyzers
# This does not override any rules using disallowed_style above
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers
##########################################
##########################################
# All constant fields must be PascalCase
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1303.md
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.severity = warning
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.style = non_private_static_field_style
dotnet_naming_rule.stylecop_constant_fields_must_be_pascal_case_rule.symbols = stylecop_constant_fields_group
dotnet_naming_symbols.stylecop_constant_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
dotnet_naming_symbols.stylecop_constant_fields_group.applicable_kinds = field
dotnet_naming_symbols.stylecop_constant_fields_group.required_modifiers = const
##########################################
##########################################
# All static readonly fields must be PascalCase
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1311.md
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.severity = warning
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.style = non_private_static_field_style
dotnet_naming_rule.stylecop_static_readonly_fields_must_be_pascal_case_rule.symbols = stylecop_static_readonly_fields_group
dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected, private
dotnet_naming_symbols.stylecop_static_readonly_fields_group.applicable_kinds = field
dotnet_naming_symbols.stylecop_static_readonly_fields_group.required_modifiers = static, readonly
##########################################
##########################################
# No non-private instance fields are allowed
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1401.md
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.severity = error
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.style = disallowed_style
dotnet_naming_rule.stylecop_instance_fields_must_be_private_rule.symbols = stylecop_fields_must_be_private_group
dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_accessibilities = public, internal, protected_internal, protected, private_protected
dotnet_naming_symbols.stylecop_fields_must_be_private_group.applicable_kinds = field
##########################################
##########################################
# Private fields must be camelCase
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1306.md
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.severity = warning
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.style = camel_case_style
dotnet_naming_rule.stylecop_private_fields_must_be_camel_case_rule.symbols = stylecop_private_fields_group
dotnet_naming_symbols.stylecop_private_fields_group.applicable_accessibilities = private
dotnet_naming_symbols.stylecop_private_fields_group.applicable_kinds = field
##########################################
##########################################
# Local variables must be camelCase
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1312.md
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.severity = silent
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.style = camel_case_style
dotnet_naming_rule.stylecop_local_fields_must_be_camel_case_rule.symbols = stylecop_local_fields_group
dotnet_naming_symbols.stylecop_local_fields_group.applicable_accessibilities = local
dotnet_naming_symbols.stylecop_local_fields_group.applicable_kinds = local
##########################################
##########################################
# This rule should never fire. However, it's included for at least two purposes:
# First, it helps to understand, reason about, and root-case certain types of issues, such as bugs in .editorconfig parsers.
# Second, it helps to raise immediate awareness if a new field type is added (as occurred recently in C#).
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.severity = error
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.style = internal_error_style
dotnet_naming_rule.sanity_check_uncovered_field_case_rule.symbols = sanity_check_uncovered_field_case_group
dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_accessibilities = *
dotnet_naming_symbols.sanity_check_uncovered_field_case_group.applicable_kinds = field
##########################################
##########################################
# All of the following must be PascalCase:
# - Namespaces
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-namespaces
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
# - Classes and Enumerations
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
# https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1300.md
# - Delegates
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces#names-of-common-types
# - Constructors, Properties, Events, Methods
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-type-members
dotnet_naming_rule.element_rule.severity = warning
dotnet_naming_rule.element_rule.style = non_private_static_field_style
dotnet_naming_rule.element_rule.symbols = element_group
dotnet_naming_symbols.element_group.applicable_kinds = namespace, class, enum, struct, delegate, event, method, property
##########################################
##########################################
# Interfaces use PascalCase and are prefixed with uppercase 'I'
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
dotnet_naming_rule.interface_rule.severity = warning
dotnet_naming_rule.interface_rule.style = prefix_interface_with_i_style
dotnet_naming_rule.interface_rule.symbols = interface_group
dotnet_naming_symbols.interface_group.applicable_kinds = interface
##########################################
##########################################
# Generics Type Parameters use PascalCase and are prefixed with uppercase 'T'
# https://docs.microsoft.com/dotnet/standard/design-guidelines/names-of-classes-structs-and-interfaces
dotnet_naming_rule.type_parameter_rule.severity = warning
dotnet_naming_rule.type_parameter_rule.style = prefix_type_parameters_with_t_style
dotnet_naming_rule.type_parameter_rule.symbols = type_parameter_group
dotnet_naming_symbols.type_parameter_group.applicable_kinds = type_parameter
##########################################
##########################################
# Function parameters use camelCase
# https://docs.microsoft.com/dotnet/standard/design-guidelines/naming-parameters
dotnet_naming_rule.parameters_rule.severity = warning
dotnet_naming_rule.parameters_rule.style = camel_case_style
dotnet_naming_rule.parameters_rule.symbols = parameters_group
dotnet_naming_symbols.parameters_group.applicable_kinds = parameter
##########################################
# Type Parameters
dotnet_naming_style.type_parameter_style.required_prefix = T
dotnet_naming_style.type_parameter_style.capitalization = pascal_case
dotnet_naming_rule.type_parameter_naming.severity = warning
dotnet_naming_rule.type_parameter_naming.style = type_parameter_style
dotnet_naming_rule.type_parameter_naming.symbols = type_parameter_symbol
dotnet_naming_symbols.type_parameter_symbol.applicable_accessibilities = *
dotnet_naming_symbols.type_parameter_symbol.applicable_kinds = type_parameter
# Instance fields are camelCase and start with _
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = suggestion
dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields
dotnet_naming_rule.instance_fields_should_be_camel_case.severity = suggestion
dotnet_naming_rule.instance_fields_should_be_camel_case.style = camel_case_underscore_style
dotnet_naming_rule.instance_fields_should_be_camel_case.symbols = instance_fields
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case
dotnet_naming_style.camel_case_underscore_style.required_prefix = _
dotnet_naming_style.instance_field_style.capitalization = camel_case
dotnet_naming_style.instance_field_style.required_prefix = _
dotnet_naming_symbols.instance_fields.applicable_kinds = field
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field
# Local functions are PascalCase
dotnet_diagnostic.CS8618.severity = warning
dotnet_naming_rule.local_functions_should_be_pascal_case.severity = warning
dotnet_naming_rule.local_functions_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_rule.local_functions_should_be_pascal_case.symbols = all_members
dotnet_naming_style.local_function_style.capitalization = pascal_case
dotnet_naming_symbols.local_functions.applicable_kinds = local_function
# "this." and "Me." qualifiers
; dotnet_style_qualification_for_event = true:warning
; dotnet_style_qualification_for_field = true:warning
; dotnet_style_qualification_for_method = true:warning
; dotnet_style_qualification_for_property = true:warning
# Undocumented
dotnet_style_operator_placement_when_wrapping = end_of_line
# Naming styles
dotnet_naming_rule.interface_should_be_begins_with_i.severity = warning
dotnet_naming_rule.interface_should_be_begins_with_i.style = prefix_interface_with_i_style
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.types_should_be_pascal_case.severity = warning
dotnet_naming_rule.types_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
# By default, name items with PascalCase
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = warning
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = non_private_static_field_style
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
# pascal_case_style - Define the PascalCase style
dotnet_naming_style.pascal_case_style.capitalization = pascal_case
dotnet_naming_symbols.all_members.applicable_kinds = *
# Symbol specifications
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.required_modifiers = *
# Naming styles
dotnet_naming_style.begins_with_i.capitalization = pascal_case
dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
#### Interoperability ####
# P/Invokes should not be visible
dotnet_diagnostic.CA1401.severity = error
# Validate platform compatibility
dotnet_diagnostic.CA1416.severity = suggestion
# Do not use OutAttribute on string parameters for P/Invokes
dotnet_diagnostic.CA1417.severity = suggestion
# Validate platform compatibility
dotnet_diagnostic.CA1418.severity = suggestion
# Provide a parameterless constructor that is as visible as the containing type for concrete types derived from 'System.Runtime.InteropServices.SafeHandle'
dotnet_diagnostic.CA1419.severity = suggestion
# Property, type, or attribute requires runtime marshalling
dotnet_diagnostic.CA1420.severity = suggestion
# Method uses runtime marshalling when DisableRuntimeMarshallingAttribute is applied
dotnet_diagnostic.CA1421.severity = warning
# Validate platform compatibility - obsoleted APIs
dotnet_diagnostic.CA1422.severity = warning
#### Diagnostic ####
# Avoid excessive inheritance
dotnet_diagnostic.CA1501.severity = warning
# Avoid excessive complexity
dotnet_diagnostic.CA1502.severity = warning
# Avoid unmaintainable code
dotnet_diagnostic.CA1505.severity = warning
# Avoid excessive class coupling
dotnet_diagnostic.CA1506.severity = error
# Use nameof in place of string
dotnet_diagnostic.CA1507.severity = warning
# Avoid dead conditional code
dotnet_diagnostic.CA1508.severity = error
# Invalid entry in code metrics configuration file
dotnet_diagnostic.CA1509.severity = error
# Use ArgumentNullException throw helper
dotnet_diagnostic.CA1510.severity = warning
# Use ArgumentException throw helper
dotnet_diagnostic.CA1511.severity = warning
# Use ArgumentOutOfRangeException throw helper
dotnet_diagnostic.CA1512.severity = warning
# Use ObjectDisposedException throw helper
dotnet_diagnostic.CA1513.severity = warning
# StatementMustNotUseUnnecessaryParenthesis
dotnet_diagnostic.SA1119.severity = suggestion
# AccessModifierMustBeDeclared
dotnet_diagnostic.SA1400.severity = warning
# FieldsMustBePrivate
dotnet_diagnostic.SA1401.severity = warning
# FileMayOnlyContainASingleNamespace
dotnet_diagnostic.SA1403.severity = error
# DebugAssertMustProvideMessageText
dotnet_diagnostic.SA1405.severity = warning
# DebugFailMustProvideMessageText
dotnet_diagnostic.SA1406.severity = warning
# RemoveUnnecessaryCode
dotnet_diagnostic.SA1409.severity = error
# Dispose created
dotnet_diagnostic.IDISP001.severity = error
# Dispose member
dotnet_diagnostic.IDISP002.severity = error
# Dispose previous before re-assigning
dotnet_diagnostic.IDISP003.severity = error
# Don't ignore created IDisposable
dotnet_diagnostic.IDISP004.severity = error
# Return type should indicate that the value should be disposed
dotnet_diagnostic.IDISP005.severity = error
# Implement IDisposable
dotnet_diagnostic.IDISP006.severity = error
# Don't dispose injected
dotnet_diagnostic.IDISP007.severity = error
# Don't assign member with injected and created disposables
dotnet_diagnostic.IDISP008.severity = error
# Add IDisposable interface
dotnet_diagnostic.IDISP009.severity = error
# Call base.Dispose(disposing)
dotnet_diagnostic.IDISP010.severity = error
# Don't return disposed instance
dotnet_diagnostic.IDISP011.severity = warning
# Property should not return created disposable
dotnet_diagnostic.IDISP012.severity = error
# Await in using
dotnet_diagnostic.IDISP013.severity = error
# Use a single instance of HttpClient
dotnet_diagnostic.IDISP014.severity = warning
# Member should not return created and cached instance
dotnet_diagnostic.IDISP015.severity = error
# Don't use disposed instance
dotnet_diagnostic.IDISP016.severity = error
# Prefer using
dotnet_diagnostic.IDISP017.severity = error
# Inline variable declaration
dotnet_diagnostic.IDISP018.severity = error
# Call SuppressFinalize
dotnet_diagnostic.IDISP019.severity = error
# Use pattern matching to avoid is check followed by a cast (with variable)
dotnet_diagnostic.IDISP020.severity = error
# Call this.Dispose(true)
dotnet_diagnostic.IDISP021.severity = error
# Call this.Dispose(false)
dotnet_diagnostic.IDISP022.severity = error
# Don't use reference types in finalizer context
dotnet_diagnostic.IDISP023.severity = error
# Don't call GC.SuppressFinalize(this) when the type is sealed and has no finalizer
dotnet_diagnostic.IDISP024.severity = error
# Class with no virtual dispose method should be sealed
dotnet_diagnostic.IDISP025.severity = error
# Class with no virtual DisposeAsyncCore method should be sealed
dotnet_diagnostic.IDISP026.severity = error
# Namespace does not match folder structure
dotnet_diagnostic.IDE0130.severity = warning
#### Naming ####
# Do not name enum values 'Reserved'
dotnet_diagnostic.CA1700.severity = warning
dotnet_code_quality.CA1700.api_surface = public, protected
# Identifiers should not contain underscores
dotnet_diagnostic.CA1707.severity = none
dotnet_code_quality.CA1707.api_surface = public, protected
# Identifiers should differ by more than case
dotnet_diagnostic.CA1708.severity = error
# Identifiers should have correct suffix
dotnet_diagnostic.CA1710.severity = warning
# Identifiers should not have incorrect suffix
dotnet_diagnostic.CA1711.severity = warning
# Do not prefix enum values with type name
dotnet_diagnostic.CA1712.severity = error
# Events should not have before or after prefix
dotnet_diagnostic.CA1713.severity = warning
# Flags enums should have plural names
dotnet_diagnostic.CA1714.severity = error
# Identifiers should have correct prefix
dotnet_diagnostic.CA1715.severity = error
# Identifiers should not match keywords
dotnet_diagnostic.CA1716.severity = warning
# Only FlagsAttribute enums should have plural names
dotnet_diagnostic.CA1717.severity = error
# Identifiers should not contain type names
dotnet_diagnostic.CA1720.severity = warning
# Property names should not match get methods
dotnet_diagnostic.CA1721.severity = error
# Type names should not match namespaces
dotnet_diagnostic.CA1724.severity = warning
# Parameter names should match base declaration
dotnet_diagnostic.CA1725.severity = warning
# Use PascalCase for named placeholders
dotnet_diagnostic.CA1727.severity = warning
#### Code Quality ####
dotnet_code_quality_unused_parameters = all:warning
dotnet_code_quality.interpolated_string_composite_format = true
dotnet_code_quality.prefer_inferred_anonymous_type_member_names = true
dotnet_code_quality.prefer_inferred_tuple_names = true
dotnet_code_quality.prefer_auto_properties = false
dotnet_code_quality.prefer_readonly = true
dotnet_code_quality.prefer_const = true
dotnet_code_quality.require_accessibility_modifiers = true
dotnet_code_quality.require_explicit_visibility = true
dotnet_code_quality.require_variable_declaration_for_explicit_type = false
dotnet_code_quality.require_explicit_type_arguments = true
#### Performance ####
# Use Literals Where Appropriate
dotnet_diagnostic.CA1802.severity = suggestion
# Do not initialize unnecessarily.
dotnet_diagnostic.CA1805.severity = error
# Do not ignore method results
dotnet_diagnostic.CA1806.severity = error
# Initialize reference type static fields inline ****!
dotnet_diagnostic.CA1810.severity = suggestion
# Avoid uninstantiated internal classes
dotnet_diagnostic.CA1812.severity = warning
# Avoid unsealed attributes ****!
dotnet_diagnostic.CA1813.severity = suggestion
# Prefer jagged arrays over multidimensional ****
dotnet_diagnostic.CA1814.severity = warning
# Override equals and operator equals on value types
dotnet_diagnostic.CA1815.severity = warning
# Properties should not return arrays ****!
dotnet_diagnostic.CA1819.severity = suggestion
dotnet_code_quality.CA1819.api_surface = public, protected
# Test for empty strings using string length
dotnet_diagnostic.CA1820.severity = warning
# Remove empty finalizers ****
dotnet_diagnostic.CA1821.severity = error
# Mark members as static
dotnet_diagnostic.CA1822.severity = suggestion
# Avoid unused private fields
dotnet_diagnostic.CA1823.severity = error
# Mark assemblies with NeutralResourcesLanguageAttribute ****
dotnet_diagnostic.CA1824.severity = suggestion
# Avoid zero-length array allocations ****!
dotnet_diagnostic.CA1825.severity = warning
# Use property instead of Linq Enumerable method ****!
dotnet_diagnostic.CA1826.severity = error
# Do not use Count/LongCount when Any can be used ****!
dotnet_diagnostic.CA1827.severity = suggestion
# Do not use CountAsync/LongCountAsync when AnyAsync can be used ****!
dotnet_diagnostic.CA1828.severity = suggestion
# Use Length/Count property instead of Enumerable.Count method ****!
dotnet_diagnostic.CA1829.severity = error
# Prefer strongly-typed Append and Insert method overloads on StringBuilder. ****!
dotnet_diagnostic.CA1830.severity = warning
# Use AsSpan instead of Range-based indexers for string when appropriate ****!
dotnet_diagnostic.CA1831.severity = error
# Use AsSpan or AsMemory instead of Range-based indexers for getting ReadOnlySpan or ReadOnlyMemory portion of an array ****!
dotnet_diagnostic.CA1832.severity = warning
# Use AsSpan or AsMemory instead of Range-based indexers for getting Span or Memory portion of an array ****!
dotnet_diagnostic.CA1833.severity = error
# Use StringBuilder.Append(char) for single character strings ****!
dotnet_diagnostic.CA1834.severity = warning
# Prefer the memory-based overloads of ReadAsync/WriteAsync methods in stream-based classes ****!
dotnet_diagnostic.CA1835.severity = warning
# Prefer IsEmpty over Count when available ****!
dotnet_diagnostic.CA1836.severity = error
# Use Environment.ProcessId instead of Process.GetCurrentProcess().Id ****!
dotnet_diagnostic.CA1837.severity = error
# Avoid StringBuilder parameters for P/Invokes ****
dotnet_diagnostic.CA1838.severity = warning
# Use Environment.ProcessPath instead of Process.GetCurrentProcess().MainModule.FileName ****!
dotnet_diagnostic.CA1839.severity = error
# Use Environment.CurrentManagedThreadId instead of Thread.CurrentThread.ManagedThreadId ****!
dotnet_diagnostic.CA1840.severity = suggestion
# Prefer Dictionary Contains methods
dotnet_diagnostic.CA1841.severity = suggestion
# Do not use 'WhenAll' with a single task ****
dotnet_diagnostic.CA1842.severity = error
# Do not use 'WaitAll' with a single task ****
dotnet_diagnostic.CA1843.severity = error
# Provide memory-based overrides of async methods when subclassing 'Stream' ****
dotnet_diagnostic.CA1844.severity = warning
# Use span-based 'string.Concat' ****
dotnet_diagnostic.CA1845.severity = warning
# Prefer AsSpan over Substring ****!
dotnet_diagnostic.CA1846.severity = warning
# Use string.Contains(char) instead of string.Contains(string) with single character ****!
dotnet_diagnostic.CA1847.severity = error
# Use the LoggerMessage delegates ****!
dotnet_diagnostic.CA1848.severity = warning
# Call async methods when in an async method ****
dotnet_diagnostic.CA1849.severity = error
# Prefer static HashData method over ComputeHash ****!
dotnet_diagnostic.CA1850.severity = error
# Possible multiple enumerations of IEnumerable collection ****
dotnet_diagnostic.CA1851.severity = warning
# Seal internal types ***!
dotnet_diagnostic.CA1852.severity = error
# Unnecessary call to 'Dictionary.ContainsKey(key)' ****!
dotnet_diagnostic.CA1853.severity = error
# Prefer the IDictionary.TryGetValue(TKey, out TValue) method!
dotnet_diagnostic.CA1854.severity = error
# Use Span<T>.Clear() instead of Span<T>.Fill() ****!
dotnet_diagnostic.CA1855.severity = suggestion
# Incorrect usage of ConstantExpected attribute ****!
dotnet_diagnostic.CA1856.severity = warning
# A constant is expected for the parameter ****!
dotnet_diagnostic.CA1857.severity = warning
# Use StartsWith instead of IndexOf ****!
dotnet_diagnostic.CA1858.severity = error
# Use concrete types when possible for improved performance
dotnet_diagnostic.CA1859.severity = warning
# Avoid using 'Enumerable.Any()' extension method ****!
dotnet_diagnostic.CA1860.severity = error
# Avoid constant arrays as arguments
dotnet_diagnostic.CA1861.severity = warning
# Prefer the 'StringComparison' method overloads to perform case-insensitive string comparisons ****!
dotnet_diagnostic.CA1862.severity = warning
# Use 'CompositeFormat' ****!
dotnet_diagnostic.CA1863.severity = warning
# Prefer the 'IDictionary.TryAdd(TKey, TValue)' method ****!
dotnet_diagnostic.CA1864.severity = suggestion
# Use 'string.Method(char)' instead of 'string.Method(string)' for string with single char ***!
dotnet_diagnostic.CA1865.severity = warning
dotnet_diagnostic.CA1866.severity = warning
dotnet_diagnostic.CA1867.severity = warning
# Unnecessary call to 'Contains' for sets ****
dotnet_diagnostic.CA1868.severity = error
# Use a cached 'SearchValues' instance ****
dotnet_diagnostic.CA1869.severity = warning
# Cache and reuse 'JsonSerializerOptions' instances ****
dotnet_diagnostic.CA1870.severity = warning
# Use Span<T>.Clear() instead of Span<T>.Fill() ****
dotnet_analyzer_diagnostic.category-Performance.severity = error
# The UTF-7 encoding is insecure
dotnet_diagnostic.SYSLIB0001.severity = error
#### Obsolete ####
# PrincipalPermissionAttribute is obsolete
dotnet_diagnostic.SYSLIB0002.severity = error
# Code access security is not supported
dotnet_diagnostic.SYSLIB0003.severity = error
# The constrained execution region (CER) feature is not supported
dotnet_diagnostic.SYSLIB0004.severity = error
# The global assembly cache (GAC) is not supported
dotnet_diagnostic.SYSLIB0005.severity = error
# Thread.Abort is not supported
dotnet_diagnostic.SYSLIB0006.severity = error
# Default implementations of cryptography algorithms not supported
dotnet_diagnostic.SYSLIB0007.severity = error
# CreatePdbGenerator is not supported
dotnet_diagnostic.SYSLIB0008.severity = error
# The AuthenticationManager Authenticate and PreAuthenticate methods are not supported
dotnet_diagnostic.SYSLIB0009.severity = error
# Unsupported remoting APIs
dotnet_diagnostic.SYSLIB0010.severity = error
# BinaryFormatter serialization is obsolete
dotnet_diagnostic.SYSLIB0011.severity = error
# Type or member is obsolete
dotnet_diagnostic.SYSLIB0012.severity = error
# EscapeUriString is obsolete
dotnet_diagnostic.SYSLIB0013.severity = error
# WebRequest, HttpWebRequest, ServicePoint, WebClient are obsolete
dotnet_diagnostic.SYSLIB0014.severity = error
# DisablePrivateReflectionAttribute is obsolete
dotnet_diagnostic.SYSLIB0015.severity = error
# GetContextInfo() is obsolete
dotnet_diagnostic.SYSLIB0016.severity = error
# Strong-name signing is not supported and throws PlatformNotSupportedException
dotnet_diagnostic.SYSLIB0017.severity = error
# Reflection-only loading is not supported and throws PlatformNotSupportedException
dotnet_diagnostic.SYSLIB0018.severity = error
# Some RuntimeEnvironment APIs are obsolete
dotnet_diagnostic.SYSLIB0019.severity = error
# IgnoreNullValues is obsolete
dotnet_diagnostic.SYSLIB0020.severity = error
# Derived cryptographic types are obsolete
dotnet_diagnostic.SYSLIB0021.severity = error
# The Rijndael and RijndaelManaged types are obsolete
dotnet_diagnostic.SYSLIB0022.severity = error
# RNGCryptoServiceProvider is obsolete
dotnet_diagnostic.SYSLIB0023.severity = error
# Creating and unloading AppDomains is not supported and throws an exception
dotnet_diagnostic.SYSLIB0024.severity = error
# SuppressIldasmAttribute is obsolete
dotnet_diagnostic.SYSLIB0025.severity = error
# X509Certificate and X509Certificate2 are immutable
dotnet_diagnostic.SYSLIB0026.severity = error
# PublicKey.Key is obsolete
dotnet_diagnostic.SYSLIB0027.severity = error
# X509Certificate2.PrivateKey is obsolete
dotnet_diagnostic.SYSLIB0028.severity = error
# ProduceLegacyHmacValues is obsolete
dotnet_diagnostic.SYSLIB0029.severity = error
# HMACSHA1 always uses the algorithm implementation provided by the platform
dotnet_diagnostic.SYSLIB0030.severity = error
# EncodeOID is obsolete
dotnet_diagnostic.SYSLIB0031.severity = error
# Recovery from corrupted process state exceptions is not supported
dotnet_diagnostic.SYSLIB0032.severity = error
# Rfc2898DeriveBytes.CryptDeriveKey is obsolete
dotnet_diagnostic.SYSLIB0033.severity = error
# CmsSigner(CspParameters) constructor is obsolete
dotnet_diagnostic.SYSLIB0034.severity = error
# ComputeCounterSignature without specifying a CmsSigner is obsolete
dotnet_diagnostic.SYSLIB0035.severity = error
# Regex.CompileToAssembly is obsolete
dotnet_diagnostic.SYSLIB0036.severity = error
# AssemblyName members HashAlgorithm, ProcessorArchitecture, and VersionCompatibility are obsolete
dotnet_diagnostic.SYSLIB0037.severity = error
# SerializationFormat.Binary is obsolete
dotnet_diagnostic.SYSLIB0038.severity = error
# SslProtocols.Tls and SslProtocols.Tls11 are obsolete
dotnet_diagnostic.SYSLIB0039.severity = error
# EncryptionPolicy.NoEncryption and EncryptionPolicy.AllowNoEncryption are obsolete
dotnet_diagnostic.SYSLIB0040.severity = error
# Some Rfc2898DeriveBytes constructors are obsolete
dotnet_diagnostic.SYSLIB0041.severity = error
# FromXmlString and ToXmlString on ECC types are obsolete
dotnet_diagnostic.SYSLIB0042.severity = error
# ECDiffieHellmanPublicKey.ToByteArray is obsolete
dotnet_diagnostic.SYSLIB0043.severity = error
# AssemblyName.CodeBase and AssemblyName.EscapedCodeBase are obsolete
dotnet_diagnostic.SYSLIB0044.severity = error
# Some cryptographic factory methods are obsolete
dotnet_diagnostic.SYSLIB0045.severity = error
# ControlledExecution.Run should not be used
dotnet_diagnostic.SYSLIB0046.severity = error
# XmlSecureResolver is obsolete
dotnet_diagnostic.SYSLIB0047.severity = error
# RSA.EncryptValue and DecryptValue are obsolete
dotnet_diagnostic.SYSLIB0048.severity = error
# Formatter-based serialization is obsolete
dotnet_diagnostic.SYSLIB0050.severity = error
# Legacy serialization support APIs are obsolete
dotnet_diagnostic.SYSLIB0051.severity = error
# APIs that support obsolete mechanisms for Regex extensibility are obsolete
dotnet_diagnostic.SYSLIB0052.severity = error
# AesGcm should indicate the required tag size
dotnet_diagnostic.SYSLIB0053.severity = warning
# Logging method names can't start with an underscore
dotnet_diagnostic.SYSLIB1001.severity = error
# Don't include log level parameters as templates in the logging message
dotnet_diagnostic.SYSLIB1002.severity = error
# Logging method parameter names can't start with an underscore
dotnet_diagnostic.SYSLIB1003.severity = error
# Could not find a required type definition
dotnet_diagnostic.SYSLIB1005.severity = error
# Multiple logging methods cannot use the same event ID
dotnet_diagnostic.SYSLIB1006.severity = error
# Logging methods must return void
dotnet_diagnostic.SYSLIB1007.severity = error
# One of the arguments to a logging method must implement the ILogger interface
dotnet_diagnostic.SYSLIB1008.severity = error
# Logging methods must be static
dotnet_diagnostic.SYSLIB1009.severity = error
# Logging methods must be partial
dotnet_diagnostic.SYSLIB1010.severity = error
# Logging methods cannot be generic
dotnet_diagnostic.SYSLIB1011.severity = error
# Redundant qualifier in logging message
dotnet_diagnostic.SYSLIB1012.severity = error
# Don't include exception parameters as templates in the logging message
dotnet_diagnostic.SYSLIB1013.severity = error
# Logging template has no corresponding method argument
dotnet_diagnostic.SYSLIB1014.severity = error
# Argument is not referenced from the logging message
dotnet_diagnostic.SYSLIB1015.severity = error
# Logging methods cannot have a body
dotnet_diagnostic.SYSLIB1016.severity = error
# A LogLevel value must be supplied in the LoggerMessage attribute or as a parameter to the logging method
dotnet_diagnostic.SYSLIB1017.severity = error
# Don't include logger parameters as templates in the logging message
dotnet_diagnostic.SYSLIB1018.severity = error
# Couldn't find a field of type ILogger
dotnet_diagnostic.SYSLIB1019.severity = error
# Found multiple fields of type ILogger
dotnet_diagnostic.SYSLIB1020.severity = error
# Multiple message-template item names differ only by case
dotnet_diagnostic.SYSLIB1021.severity = error
# Can't have malformed format strings
dotnet_diagnostic.SYSLIB1022.severity = error
# Generating more than six arguments is not supported
dotnet_diagnostic.SYSLIB1023.severity = error
# System.Text.Json source generator did not generate output for type
dotnet_diagnostic.SYSLIB1030.severity = error
# System.Text.Json source generator encountered a duplicate type info property name