@@ -247,6 +247,18 @@ dotnet_diagnostic.CA1054.severity = none
247247dotnet_diagnostic.CA1056.severity = none
248248# Avoid empty interfaces
249249dotnet_diagnostic.CA1040.severity = none
250+ # Use 'ArgumentNullException.ThrowIfNull' instead of explicitly throwing a new exception instance
251+ # This is not netstandard compatible
252+ dotnet_diagnostic.CA1510.severity = none
253+ # Use 'string.StartsWith(char)' instead of 'string.StartsWith(string)' when you have a string with a single char
254+ # This is not .NET 8 compatible
255+ dotnet_diagnostic.CA1865.severity = none
256+ # Use 'ObjectDisposedException.ThrowIf' instead of explicitly throwing a new exception instance
257+ # This is not netstandard compatible
258+ dotnet_diagnostic.CA1513.severity = none
259+ # Use Change the 'WriteAsync' method call to use the 'Stream.WriteAsync(ReadOnlyMemory<byte>, CancellationToken)' overload
260+ # This is not netstandard compatible
261+ dotnet_diagnostic.CA1835.severity = none
250262# Use ConfigureAwait
251263dotnet_diagnostic.CA2007.severity = error
252264# CA1711: Identifiers should not have incorrect suffix
@@ -264,6 +276,8 @@ dotnet_diagnostic.CA1815.severity = suggestion
264276# CA1848: Use the LoggerMessage delegates
265277# TODO: REMOVE
266278dotnet_diagnostic.CA1848.severity = none
279+ # internal sealed
280+ dotnet_diagnostic.CA1852.severity = error
267281# CA1859: Use concrete types when possible for improved performance
268282# It collides with https://www.jetbrains.com/help/rider/ReturnTypeCanBeEnumerable.Local.html
269283dotnet_diagnostic.CA1859.severity = none
@@ -303,7 +317,7 @@ dotnet_diagnostic.CA1001.severity = error
303317dotnet_diagnostic.CA1304.severity = error
304318# CA1305: String.Format with culture
305319dotnet_diagnostic.CA1305.severity = error
306- # CA1304: CA1308: Normalize strings to uppercase
320+ # CA1308: Normalize strings to uppercase
307321dotnet_diagnostic.CA1308.severity = none
308322# CA1721: The property name 'DefaultArgs' is confusing given the existence of method 'GetDefaultArgs'. Rename or remove one of these members.
309323dotnet_diagnostic.CA1721.severity = error
0 commit comments