@@ -516,11 +516,20 @@ dotnet_diagnostic.S1135.severity = suggestion # https://github.com/atc-net
516
516
# Custom - Code Analyzers Rules
517
517
# #########################################
518
518
519
+ dotnet_diagnostic.IDE0010.severity = suggestion # Populate switch
520
+ dotnet_diagnostic.IDE0021.severity = suggestion # Use expression body for constructor
521
+ dotnet_diagnostic.IDE0046.severity = suggestion # If statement can be simplified
522
+ dotnet_diagnostic.IDE0055.severity = none # Fix formatting
519
523
dotnet_diagnostic.IDE0057.severity = none # Substring can be simplified
524
+ dotnet_diagnostic.IDE0072.severity = suggestion # Populate switch
525
+ dotnet_diagnostic.IDE0130.severity = suggestion # Namespace does not match folder structure
526
+ dotnet_diagnostic.IDE0290.severity = none # Use primary constructor
527
+ dotnet_diagnostic.IDE0305.severity = suggestion # Collection initialization can be simplified
520
528
521
529
dotnet_diagnostic.SA1010.severity = none #
522
530
523
531
dotnet_diagnostic.CA1054.severity = none # URI parameters should not be strings
532
+ dotnet_diagnostic.CA1515.severity = suggestion # Because an application's API isn't typically referenced from outside the assembly, types can be made internal (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/quality-rules/ca1515)
524
533
dotnet_diagnostic.CA1848.severity = none # For improved performance, use the LoggerMessage delegates instead of calling ' LoggerExtensions.LogTrace(ILogger, string, params object[])'
525
534
dotnet_diagnostic.CA1859.severity = none #
526
535
dotnet_diagnostic.CA1860.severity = none #
@@ -536,6 +545,7 @@ dotnet_diagnostic.S1172.severity = none # False positive
536
545
dotnet_diagnostic.S2589.severity = none #
537
546
dotnet_diagnostic.S2629.severity = none #
538
547
dotnet_diagnostic.S3267.severity = none #
548
+ dotnet_diagnostic.S3358.severity = none #
539
549
dotnet_diagnostic.S3878.severity = none #
540
550
dotnet_diagnostic.S4457.severity = none # Split this method into two, one handling parameters check and the other handling the asynchronous code
541
551
dotnet_diagnostic.S6602.severity = none #
0 commit comments