chore(deps): update package versions and enable code analyzers

This commit is contained in:
2025-06-21 01:34:19 -04:00
parent 0f0d739385
commit 8323477cd0
2 changed files with 32 additions and 11 deletions

10
backend/analyzers.ruleset Normal file
View File

@@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Custom Rules" ToolsVersion="16.0">
<Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp" RuleNamespace="Microsoft.CodeAnalysis.CSharp">
<Rule Id="CS1591" Action="None" /> <!-- Missing XML comment -->
</Rules>
<Rules AnalyzerId="SonarAnalyzer.CSharp" RuleNamespace="SonarAnalyzer.CSharp">
<!-- <Rule Id="S1118" Action="Warning" /> Utility classes should not have public constructors -->
<!-- <Rule Id="S3903" Action="Warning" /> Types should be defined in named namespaces -->
</Rules>
</RuleSet>