til

Today I Learned: collection of notes, tips and tricks and stuff I learn from day to day working with computers and technology as an open source contributor and product manager

View project on GitHub

Use perlcritic

perlcritic is a static code analysis tool for Perl. It checks your code for compliance with a set of coding standards.

A global configuration for you account can be created by running the following command:

perlcritic --profile-proto >> $HOME/.perlcriticrc

A local configuration, for example for a repository, can be created by running the following command:

perlcritic --profile-proto >> .perlcriticrc

Resources and References