1

我正在使用 Visual Studio 2012 Express,因此无法访问常规版本 VS 的集成。我已经使用MSBuild 来集成 StyleCop,并且规则显示为警告。我希望能够禁用规则。Disabling StyleCop 规则帖子显示这是可能的,但我无法理解建议编辑Settings.StyleCop文件的答案。但是,我不明白需要添加到此文件中以禁用规则。

例如,如果我想禁用规则SA1649,我将如何更新以下文件?

<StyleCopSettings Version="4.3">
  <GlobalSettings>
    <CollectionProperty Name="DeprecatedWords">
      <Value>preprocessor,pre-processor</Value>
      <Value>shortlived,short-lived</Value>
    </CollectionProperty>
  </GlobalSettings>
  <Parsers>
    <Parser ParserId="StyleCop.CSharp.CsParser">
      <ParserSettings>
        <CollectionProperty Name="GeneratedFileFilters">
          <Value>\.g\.cs$</Value>
          <Value>\.generated\.cs$</Value>
          <Value>\.g\.i\.cs$</Value>
        </CollectionProperty>
      </ParserSettings>
    </Parser>
  </Parsers>
  <Analyzers>
    <Analyzer AnalyzerId="StyleCop.CSharp.NamingRules">
      <AnalyzerSettings>
        <CollectionProperty Name="Hungarian">
          <Value>as</Value>
          <Value>do</Value>
          <Value>id</Value>
          <Value>if</Value>
          <Value>in</Value>
          <Value>is</Value>
          <Value>my</Value>
          <Value>no</Value>
          <Value>on</Value>
          <Value>to</Value>
          <Value>ui</Value>
        </CollectionProperty>
      </AnalyzerSettings>
    </Analyzer>
  </Analyzers>
</StyleCopSettings>

注意:我使用的是 4.7 版,即使默认设置文件显示 4.3

4

2 回答 2

0

我找到了以下文档来编辑 XML 中的 stylecop 规则

XML 代码片段如下。

<StyleCopSettings Version="4.3">
  <Analyzers>
    <Analyzer AnalyzerId="Microsoft.StyleCop.CSharp.LayoutRules">
      <Rules>
        <Rule Name="StatementMustNotBeOnSingleLine">
          <RuleSettings>
            <BooleanProperty Name="Enabled">False</BooleanProperty>
          </RuleSettings>
        </Rule>
        <Rule Name="ElementMustNotBeOnSingleLine">
          <RuleSettings>
            <BooleanProperty Name="Enabled">False</BooleanProperty>
          </RuleSettings>
        </Rule>
      </Rules>
      <AnalyzerSettings />
    </Analyzer>
  </Analyzers>
</StyleCopSettings>

此外,我还发现您可以将Settings.Sytlecop文件拖到StyleCopSettingsEditor.exe显示用于启用和禁用规则的 GUI 上。

于 2013-11-13T05:21:51.073 回答
0

将以下代码粘贴到记事本中并另存为 settings.StyleCop 并将其放在解决方案文件夹中并构建

<StyleCopSettings Version="105">
  <GlobalSettings>
    <BooleanProperty Name="RulesEnabledByDefault">False</BooleanProperty>
  </GlobalSettings>
</StyleCopSettings>
于 2017-04-26T12:38:22.187 回答