Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Perl::Critic and file types

by rir (Vicar)
on Mar 02, 2009 at 15:21 UTC ( [id://747481]=note: print w/replies, xml ) Need Help??


in reply to Perl::Critic and file types

If I felt as you do, I'd probably add a perlcritic check to my makes. But you could just use themes something like this:
#!/usr/bin/perl use warnings; use strict; use File::Basename; my ( $DEFAULT, $PM_THEME, $PL_THEME, $T_THEME ) = qw( rir rir_large rir rir ); my %themes = ( '.t' => $T_THEME, '.pm' => $PM_THEME, '.pl' => $PL_THEME, ); my $file = pop @ARGV; my ( $name, $path, $suffix ) = fileparse( $file, qr{\.\w+} ); local $, = ' '; # forking could scale up better if ($suffix) { print `perlcritic @ARGV -theme $themes{$suffix} $file`; } else { # STDIN or unknown extension ( or anything else YYY? ) print `perlcritic @ARGV -theme $DEFAULT $file`; }
Be well,
rir

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://747481]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (4)
As of 2024-04-19 14:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found