-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathstylecop.ruleset
More file actions
23 lines (21 loc) · 1.7 KB
/
stylecop.ruleset
File metadata and controls
23 lines (21 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="StyleCop" Description="StyleCop rules disabled." ToolsVersion="10.0">
<Localization ResourceAssembly="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.dll" ResourceBaseName="Microsoft.VisualStudio.CodeAnalysis.RuleSets.Strings.Localized">
<Name Resource="MinimumRecommendedRules_Name" />
<Description Resource="MinimumRecommendedRules_Description" />
</Localization>
<!-- See https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation -->
<Rules AnalyzerId="StyleCop.Analyzers" RuleNamespace="StyleCop.Analyzers">
<Rule Id="SA1309" Action="None" /> <!-- Field 'XXXX' should not begin with an underscore -->
<Rule Id="SA1633" Action="None" /> <!-- The file header is missing or not located at the top of the file -->
<Rule Id="SA1101" Action="None" /> <!-- Prefix local calls with this -->
<Rule Id="SA1512" Action="None" /> <!-- Single-line comments must not be followed by blank line -->
<Rule Id="SA1200" Action="None" /> <!-- UsingDirectivesMustBePlacedWithinNamespace -->
<Rule Id="SA1515" Action="None" /> <!-- Single-line comment should be preceded by blank line -->
<Rule Id="SA1501" Action="None" /> <!-- Single line comment should begin with a space. -->
<Rule Id="SA1119" Action="None" /> <!-- StatementMustNotUseUnnecessaryParenthesis -->
<Rule Id="SA1629" Action="Info"/> <!-- Documentation text should end with a period -->
<Rule Id="SA1117" Action="Info"/> <!-- The parameters should all be placed on the same line or each parameter should be placed on its own line -->
<Rule Id="SA1513" Action="Info"/> <!-- Closing brace should be followed by blank line -->
</Rules>
</RuleSet>