@@ -50,10 +50,10 @@ file_header_template = This Source Code Form is subject to the terms of the MIT
50
50
# ### .NET Coding Conventions ####
51
51
52
52
# this. and Me. preferences
53
- dotnet_style_qualification_for_event = false :warning
54
- dotnet_style_qualification_for_field = false :warning
55
- dotnet_style_qualification_for_method = false :warning
56
- dotnet_style_qualification_for_property = false :warning
53
+ dotnet_style_qualification_for_event = false :silent
54
+ dotnet_style_qualification_for_field = false :silent
55
+ dotnet_style_qualification_for_method = false :silent
56
+ dotnet_style_qualification_for_property = false :silent
57
57
58
58
# Language keywords vs BCL types preferences
59
59
dotnet_style_predefined_type_for_locals_parameters_members = true :warning
@@ -95,8 +95,8 @@ dotnet_style_readonly_field = true:warning
95
95
96
96
# var preferences
97
97
csharp_style_var_elsewhere = false :warning
98
- csharp_style_var_for_built_in_types = false :warning
99
- csharp_style_var_when_type_is_apparent = false :warning
98
+ csharp_style_var_for_built_in_types = false :none
99
+ csharp_style_var_when_type_is_apparent = false :none
100
100
101
101
# Expression-bodied members
102
102
csharp_style_expression_bodied_accessors = false :silent
@@ -388,7 +388,7 @@ dotnet_diagnostic.SA1633.severity = none
388
388
dotnet_diagnostic.SA1634.severity = none
389
389
dotnet_diagnostic.SA1652.severity = none
390
390
391
- dotnet_diagnostic.IDE0009.severity = none
391
+
392
392
393
393
# Additional Stylecop Analyzers
394
394
dotnet_diagnostic.SA1111.severity = none
@@ -397,3 +397,19 @@ dotnet_diagnostic.SA1204.severity = none
397
397
dotnet_diagnostic.SA1208.severity = none
398
398
dotnet_diagnostic.SA1518.severity = none
399
399
dotnet_diagnostic.SA1615.severity = none
400
+ dotnet_diagnostic.SA1502.severity = none
401
+ dotnet_diagnostic.SA1010.severity = none # Opening square brackets should not be preceded by a space
402
+ # conflicts with collection expressions and IDE0028
403
+
404
+ # Suppress some ValueConverter warnings
405
+ dotnet_diagnostic.WPF0073.severity = none # Add ValueConversion attribute (unknown types)
406
+ dotnet_diagnostic.WPF0071.severity = none # Add ValueConversion attribute
407
+ dotnet_diagnostic.WPF0070.severity = none # Add default field to converter
408
+
409
+ # Suppress some IDE warnings
410
+ dotnet_diagnostic.IDE0290.severity = none # Use primary constructor
411
+ dotnet_diagnostic.CS1591.severity = none # Missing XML comment for publicly visible type or member
412
+ # 15000+ warnings in the solution
413
+ dotnet_diagnostic.CA1510.severity = none # Use ArgumentNullException throw helper
414
+ # doesn't work with older versions of .NET
415
+
0 commit comments