PDA

View Full Version : Enforcing good perl coding practices


KevinADC
12-02-2008, 01:31 AM
Perl coders often read of "best coding practices" but may not have access to what they are. Well, like all things perl, there is a module you can use to check your perl source code:

Perl::Critic (http://search.cpan.org/~thaljef/Perl-Critic-1.092/lib/Perl/Critic.pm)

If you don't want to install the module or can't install it, you can check your source code online:

http://perlcritic.com/

Regards,
Kevin

FishMonger
12-02-2008, 02:14 PM
Thanks Kevin, that's good info, I did not know about that module.