Disable SA1024 and SA1035.

These rules generate many false positives, and do not help with code readability within OpenRA.
This commit is contained in:
Paul Chote
2014-12-17 17:41:56 +13:00
committed by Matthias Mailänder
parent 39d13dc654
commit 3086cc6154
13 changed files with 205 additions and 0 deletions

View File

@@ -272,6 +272,11 @@
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="StaticElementsMustAppearBeforeInstanceElements">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
@@ -340,5 +345,15 @@
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.NamingRules">
<Rules>
<Rule Name="FieldNamesMustNotUseHungarianNotation">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
</Analyzers>
</StyleCopSettings>