12 lines
651 B
XML
12 lines
651 B
XML
<?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="SA1600" Action="None"/> <!-- Elements should be documented -->
|
|
<Rule Id="SA1633" Action="None"/> <!-- Missing File header 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>
|