在Visual Studio for Mac的Xamarin项目中,我正在尝试配置StyleCop。
我已在Settings.StyleCop中成功禁止了规则SA1512 SingleLineCommentsMustNotBeFollowedByBlankLine。
我用
<Rule Name="SingleLineCommentsMustNotBeFollowedByBlankLine">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
当我试图用这个来压制SA1515 SingleLineCommentsMustBePrecededByBlankLine时
<Rule Name="SingleLineCommentsMustBePrecededByBlankLine">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
它不起作用。关于我能够找到的规则名称的唯一文档是this
我使用了错误的规则名称吗?是否存在关于规则名称的任何其他文档或从规则SA1515的警告到项目范围内的任何其他方式?
答案 0 :(得分:0)
我在Visual Studio 2017中遇到了相同的问题。
最终,将规则名称更改为SingleLineCommentMustBePrecededByBlankLine
。