I'm looking for a lint for Perl, something that would catch dead code and other potential problems. Any suggestions?

I have

use strict;
use warnings;

already but I'd like to have more.

link|improve this question

Google "perl lint"? – Fredrik Jul 26 '11 at 19:14
feedback

2 Answers

up vote 5 down vote accepted

Perl doesn't have a direct equivalent to lint. A large part of the reason for that is that Perl doesn't provide quite as many ways to hang yourself as C does. The basic version of "lint" for Perl is this:

perl -Mstrict [-Mdiagnostics] -cw <file>

This causes perl to compile (but not run) the specified file with strictures and warnings turned on. You can use diagnostics if you want more verbose messages or leave it out if the terse ones are enough for you.

If you want something more try using Perl::Critic, but be aware that this isn't really lint, either. lint primarily concerns itself with errors (e.g. things that would prevent compilation, trigger runtime errors, be non-portable, rely on undefined behavior, etc.). Perl::Critic is more focused on enforcement of coding standards. While there is some overlap they're very different things.

link|improve this answer
Yes, Pel::Critic is not what I want for the reasons you describe. Thanks for the suggestion. – Charles Aug 9 '11 at 17:09
feedback

Perl::Critic is your friend. I use Test::Perl::Critic and build it into my code's author tests

link|improve this answer
Does it catch dead code? – Charles Jul 26 '11 at 19:17
3  
@Charles yes, there's a ControlStructures::ProhibitUnreachableCode policy for that, but it isn't all knowing. I don't believe it analyzes all constant expressions, for example, but it has picked up most blocks of dead code in some of my work. – morungos Jul 26 '11 at 19:24
9  
You can also use Devel::Cover or other code profilers to find unreachable (untested in the case of Devel::Cover) code. – Eric Strom Jul 26 '11 at 19:57
feedback

Your Answer

 
or
required, but never shown

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