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?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

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

link|improve this answer
I rather like the idea of not having to define my own format – xenoterracide Jul 13 '11 at 19:50
feedback
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.