-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeAnalysis.ruleset
20 lines (20 loc) · 1.12 KB
/
CodeAnalysis.ruleset
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="DParks - All Rules" Description="This rule set contains all useful rules. Running this rule set may result in a large number of warnings being reported. Use this rule set to get a comprehensive picture of all issues in your code. This can help you decide which of the more focused rule sets are most appropriate to run for your projects." ToolsVersion="14.0">
<IncludeAll Action="Warning" />
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed">
<Rule Id="CA1002" Action="None" />
<Rule Id="CA1006" Action="None" />
<Rule Id="CA1020" Action="None" />
<Rule Id="CA1046" Action="None" />
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<Rule Id="SA0000" Action="None" />
<Rule Id="SA1101" Action="Hidden" />
<Rule Id="SA1309" Action="Hidden" />
<Rule Id="SA1633" Action="Hidden" />
<Rule Id="SA1652" Action="Hidden" />
<Rule Id="SX1101" Action="Warning" />
<Rule Id="SX1309" Action="Warning" />
<Rule Id="SX1309S" Action="Warning" />
</Rules>
</RuleSet>