如何让 Perl::Critic 在其输出中显示违规策略?

发布于 2024-11-19 15:52:41 字数 201 浏览 4 评论 0原文

I've been told it's possible to have Perl::Critic show the policy name that is offending in its output. But I can't recall what I have to do to turn this on. How can this be enabled in a perlcritic.rc?

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

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

发布评论

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

评论(2

尹雨沫 2024-11-26 15:52:41

--verbose 命令行选项可以控制这一点 - 如果您不想指定自己的格式,请尝试值 89.这两种内置格式都包含策略名称。如果您喜欢其中之一,您可以将此行添加到您的 .perlcriticrc 中:(

verbose = 8

或者 9,如果您喜欢这种格式。)

Randy

The --verbose command-line option can control this-- if you don't want to specify your own format, try the values 8 or 9. Both of these built-in formats contain the policy name. If you like one of them, you can add this line to your .perlcriticrc:

verbose = 8

(Or 9, if you prefer that format.)

Randy

骄兵必败 2024-11-26 15:52:41
verbose = %f line %l col %c\n    [%s] %p (%e) = %m\n    %r\n

调味。您正在寻找 %p%P。说明符记录在 perlcritic 中。

verbose = %f line %l col %c\n    [%s] %p (%e) = %m\n    %r\n

Season to taste. You're after %p or perhaps %P. The specifiers are documented in perlcritic.

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