风格警察镇压消息

发布于 2024-10-02 04:27:18 字数 20 浏览 3 评论 0原文

如何对自定义规则使用抑制?

How to use suppression for custom rules?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

起风了 2024-10-09 04:27:18

您可以使用 SuppressMessageAttribute 抑制自定义规则违规,其方式与对作为 StyleCop 的一部分提供的规则的方式完全相同。例如:(

[SuppressMessage("Your.Analyzer.Namespace", "AA1000:RuleName")]

其中命名空间、规则 ID 和规则名称必须全部替换为规则的实际值)

You can suppress custom rule violations using SuppressMessageAttribute in exactly the same manner as is done for rules that ship as part of StyleCop. e.g.:

[SuppressMessage("Your.Analyzer.Namespace", "AA1000:RuleName")]

(where the namespace, rule ID, and rule name must all be replaced by the actual values for the rule)

寄意 2024-10-09 04:27:18

我利用 stylecop 忽略标题中带有“生成代码”的区域的事实,并执行以下操作:

#region Stylecop will ignore regions with "generated code" in title, like this.

//...code you don't want style cope to test code goes here

#endregion

I use the fact that stylecop ignores regions with "generated code" in title and do the following:

#region Stylecop will ignore regions with "generated code" in title, like this.

//...code you don't want style cope to test code goes here

#endregion
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文