-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodeAnalysis.ruleset
32 lines (32 loc) · 1.49 KB
/
CodeAnalysis.ruleset
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Rules for CodeAnalyzer.Vsix" Description="Code analysis rules for CodeAnalyzer.Vsix.csproj." ToolsVersion="15.0">
<IncludeAll Action="Warning" />
<Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp" RuleNamespace="Microsoft.CodeAnalysis.CSharp">
<Rule Id="CS0162" Action="Error" />
</Rules>
<Rules AnalyzerId="Microsoft.CodeAnalysis.CSharp.Features" RuleNamespace="Microsoft.CodeAnalysis.CSharp.Features">
<Rule Id="IDE0008" Action="None" />
<Rule Id="IDE0008WithoutSuggestion" Action="None" />
<Rule Id="IDE1006" Action="None" />
<Rule Id="IDE1006WithoutSuggestion" Action="None" />
</Rules>
<Rules AnalyzerId="Roslynator.CSharp.Analyzers" RuleNamespace="Roslynator.CSharp.Analyzers">
<Rule Id="RCS1013" Action="Warning" />
<Rule Id="RCS1035" Action="Warning" />
<Rule Id="RCS1046" Action="Warning" />
<Rule Id="RCS1052" Action="Warning" />
<Rule Id="RCS1060" Action="Warning" />
<Rule Id="RCS1081" Action="Warning" />
<Rule Id="RCS1087" Action="Warning" />
<Rule Id="RCS1088" Action="Warning" />
<Rule Id="RCS1153" Action="Warning" />
<Rule Id="RCS1162" Action="Warning" />
<Rule Id="RCS1198" Action="Warning" />
<Rule Id="RCS1208" Action="Info" />
</Rules>
<Rules AnalyzerId="U2UConsult.CodeAnalyzers" RuleNamespace="U2UConsult.CodeAnalyzers">
<Rule Id="U2U1003" Action="None" />
<Rule Id="U2U1104" Action="None" />
<Rule Id="U2U1105" Action="None" />
</Rules>
</RuleSet>