This is how I run
perlcritic. It sorts the output by severity, and it makes it easy to access the POD for a given policy (via
perldoc with a simple copy'n'paste in your shell). It also runs lint checking using
B::Lint.
=head1 Name
B<pcsort> - Sort perlcritic 'brutal' output by severity
=head1 Description
Input is a Perl script or module.
Prints to STDOUT.
Example: pcsort foo.pl
Also runs perl -MO=Lint.
See also ~/.perlcriticrc file
=cut
use warnings FATAL => 'all';
use strict;
use Data::Dumper;
$Data::Dumper::Sortkeys = 1;
my $file = shift;
my %hoa;
my %pols;
# These command line settings override same settings
# in ~/.perlcriticrc file
my @lines = qx(perlcritic --brutal --verbose 9 $file);
for (@lines) {
if (/ \[ ([\w:]+) \] .*? Severity : \s+ (\d) /x) {
chomp;
my $pol = $1;
my $sev = $2;
push @{ $hoa{$sev} }, $_;
$pols{"perldoc Perl::Critic::Policy::$pol"}++;
}
}
print Dumper(\%hoa);
print 'TOTAL = ', scalar @lines, "\n";
print "$_\n" for sort keys %pols;
my $lint = "perl -MO=Lint $file";
print "\n$lint\n";
print qx($lint 2>&1); # Make sure it all goes to STDOUT
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.