a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
146 lines
5.4 KiB
XML
146 lines
5.4 KiB
XML
<StyleCopSettings Version="4.3">
|
|
<GlobalSettings>
|
|
<BooleanProperty Name="RulesEnabledByDefault">False</BooleanProperty>
|
|
<StringProperty Name="MergeSettingsFiles">NoMerge</StringProperty>
|
|
</GlobalSettings>
|
|
<Analyzers>
|
|
|
|
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.NamingRules">
|
|
<AnalyzerSettings>
|
|
<CollectionProperty Name="Hungarian">
|
|
<Value>as</Value>
|
|
<Value>db</Value>
|
|
<Value>dc</Value>
|
|
<Value>do</Value>
|
|
<Value>ef</Value>
|
|
<Value>id</Value>
|
|
<Value>if</Value>
|
|
<Value>in</Value>
|
|
<Value>is</Value>
|
|
<Value>my</Value>
|
|
<Value>no</Value>
|
|
<Value>on</Value>
|
|
<Value>sl</Value>
|
|
<Value>to</Value>
|
|
<Value>ui</Value>
|
|
<Value>vs</Value>
|
|
</CollectionProperty>
|
|
</AnalyzerSettings>
|
|
</Analyzer>
|
|
|
|
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.DocumentationRules">
|
|
<AnalyzerSettings>
|
|
<BooleanProperty Name="IgnorePrivates">True</BooleanProperty>
|
|
<BooleanProperty Name="IgnoreInternals">True</BooleanProperty>
|
|
<BooleanProperty Name="IncludeFields">False</BooleanProperty>
|
|
|
|
<StringProperty Name="Copyright">Copyright (c) Microsoft Corporation. All rights reserved.</StringProperty>
|
|
</AnalyzerSettings>
|
|
|
|
<Rules>
|
|
<!-- For non-product code, do not require enum items to be documented. -->
|
|
<Rule Name="EnumerationItemsMustBeDocumented">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
|
|
<!-- For non-product code, do not require specific wording of property and indexer summary. -->
|
|
<Rule Name="PropertySummaryDocumentationMustMatchAccessors">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
<Rule Name="PropertySummaryDocumentationMustOmitSetAccessorWithRestrictedAccess">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
|
|
<!-- For non-product code, do not require specific wording of constuctor and destructor summary. -->
|
|
<Rule Name="ConstructorSummaryDocumentationMustBeginWithStandardText">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
<Rule Name="DestructorSummaryDocumentationMustBeginWithStandardText">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
|
|
<!-- Documentation headers can contain blank lines, since they are not directly consumed for external documentation. -->
|
|
<Rule Name="DocumentationHeadersMustNotContainBlankLines">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
|
|
<!-- Do not require the file header to contain the name of the file. -->
|
|
<Rule Name="FileHeaderMustContainFileName">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
<Rule Name="FileHeaderFileNameDocumentationMustMatchFileName">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
|
|
<!-- Do not require the file header to contain a Company attribute. -->
|
|
<Rule Name="FileHeaderMustHaveValidCompanyText">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
</Rules>
|
|
</Analyzer>
|
|
|
|
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.OrderingRules">
|
|
<!-- For non-product code, do not enforce specific ordering of elements. -->
|
|
<Rules>
|
|
<Rule Name="ElementsMustBeOrderedByAccess">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
<Rule Name="StaticElementsMustAppearBeforeInstanceElements">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
</Rules>
|
|
<AnalyzerSettings />
|
|
</Analyzer>
|
|
|
|
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.MaintainabilityRules">
|
|
<Rules>
|
|
<!-- For non-product code, allow multiple classes and namespaces within a file. -->
|
|
<Rule Name="FileMayOnlyContainASingleClass">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
<Rule Name="FileMayOnlyContainASingleNamespace">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
</Rules>
|
|
</Analyzer>
|
|
|
|
<Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.ReadabilityRules">
|
|
<Rules>
|
|
<!-- Per ADP guidelines, method parameter are allowed to span across multiple lines (rather than having to be assigned to a temporary variable). -->
|
|
<Rule Name="ParameterMustNotSpanMultipleLines">
|
|
<RuleSettings>
|
|
<BooleanProperty Name="Enabled">False</BooleanProperty>
|
|
</RuleSettings>
|
|
</Rule>
|
|
</Rules>
|
|
</Analyzer>
|
|
|
|
</Analyzers>
|
|
</StyleCopSettings>
|