-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylecop.ruleset
24 lines (22 loc) · 1.12 KB
/
stylecop.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
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="Rules for StyleCop.Analyzers" Description="Code analysis rules for StyleCop.Analyzers.csproj." ToolsVersion="15.0">
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<Rule Id="SA0001" Action="None"/>
<Rule Id="SA1200" Action="None"/>
<Rule Id="SA1600" Action="None"/>
<Rule Id="SA1633" Action="None"/>
<Rule Id="CS1591" Action="None"/>
<Rule Id="SA1623" Action="None"/>
<Rule Id="SA1624" Action="None"/>
<Rule Id="SA1642" Action="None"/>
<Rule Id="SA1118" Action="None"/>
<Rule Id="SA1602" Action="None"/>
<Rule Id="CS0618" Action="None"/>
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers.ReadabilityRules">
<Rule Id="SA1117" Action="None"/> <!-- Parameters should all be placed on the same line, or each on its own line -->
</Rules>
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers.MaintainabilityRules">
<Rule Id="SA1414" Action="Error"/> <!-- Tuple types appearing in member declarations should have explicitly named tuple elements -->
</Rules>
</RuleSet>