Lint-like program for Perl?

Viewed 12544

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.

4 Answers
Related