@@ -65,6 +65,12 @@ dotnet_diagnostic.S1135.severity = none
65
65
# We sometimes return null to avoid allocating an empty List<T>.
66
66
dotnet_diagnostic.S1168.severity = none
67
67
68
+ # S1144: Unused private types or members should be removed
69
+ # https://rules.sonarsource.com/csharp/RSPEC-1144
70
+ #
71
+ # This is a duplicate of IDE0051.
72
+ dotnet_diagnostic.S1144.severity = none
73
+
68
74
# S1172: Unused method parameters should be removed
69
75
# https://rules.sonarsource.com/csharp/RSPEC-1172
70
76
#
@@ -89,6 +95,12 @@ dotnet_diagnostic.S1854.severity = none
89
95
# The analysis is not precise enough, leading to false positives.
90
96
dotnet_diagnostic.S2259.severity = none
91
97
98
+ # S2292: Trivial properties should be auto-implemented
99
+ # https://rules.sonarsource.com/csharp/RSPEC-2292
100
+ #
101
+ # This is a duplicate of IDE0032.
102
+ dotnet_diagnostic.S2292.severity = none
103
+
92
104
# S2445: Blocks should be synchronized on read-only fields
93
105
# https://rules.sonarsource.com/csharp/RSPEC-2445
94
106
#
@@ -150,12 +162,30 @@ dotnet_diagnostic.S3267.severity = none
150
162
# consider enabling S3376 in favor of MA0058.
151
163
dotnet_diagnostic.S3376.severity = none
152
164
165
+ # S3442: "abstract" classes should not have "public" constructors
166
+ # https://rules.sonarsource.com/csharp/RSPEC-3442
167
+ #
168
+ # This is a duplicate of MA0017.
169
+ dotnet_diagnostic.S3442.severity = none
170
+
171
+ # S3450: Parameters with "[DefaultParameterValue]" attributes should also be marked "[Optional]"
172
+ # https://rules.sonarsource.com/csharp/RSPEC-3450
173
+ #
174
+ # This is a duplicate of MA0087.
175
+ dotnet_diagnostic.S3450.severity = none
176
+
153
177
# S3871: Exception types should be "public"
154
178
# https://rules.sonarsource.com/csharp/RSPEC-3871
155
179
#
156
180
# This is a duplicate of CA1064.
157
181
dotnet_diagnostic.S3871.severity = none
158
182
183
+ # S3903: Types should be defined in named namespaces
184
+ # https://rules.sonarsource.com/csharp/RSPEC-3903
185
+ #
186
+ # This is a duplicate of MA0047.
187
+ dotnet_diagnostic.S3903.severity = none
188
+
159
189
# S3925: "ISerializable" should be implemented correctly
160
190
# https://rules.sonarsource.com/csharp/RSPEC-3925
161
191
#
0 commit comments