Files
octokit.net/Octokit.ruleset
Haacked c123da17c3 Suppress CA1020 too few types in namespace
Also set assemblycomparemode:StrongNameIgnoringVersion so
Microsoft.Build.Async doesn't break code analysis.
2013-09-23 11:43:37 -07:00

12 lines
590 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RuleSet Name="GitHub" Description="This ruleset only includes the rules we care about. I'll be adding new ones as we fix our codebase." ToolsVersion="11.0">
<IncludeAll Action="Error" />
<Rules AnalyzerId="Microsoft.Analyzers.ManagedCodeAnalysis" RuleNamespace="Microsoft.Rules.Managed">
<Rule Id="CA1006" Action="None" />
<Rule Id="CA1014" Action="None" />
<Rule Id="CA1020" Action="None" />
<Rule Id="CA1056" Action="None" />
<Rule Id="CA1726" Action="None" />
<Rule Id="CA2210" Action="None" />
</Rules>
</RuleSet>