Perl::Critic: Difference between revisions

Content deleted Content added
Amoore (talk | contribs)
new page describing the Perl::Critic tool
 
Mskott (talk | contribs)
m Fix spelling of analyze
Line 2:
 
== History ==
The Perl::Critic project grew out of a desire to have an automated tool to help enforce the coding standards recommended by the [[Perl Best Practices]] book by [[Damian Conway]]. Historically, analyzing perl code statically had proven to be difficult because the only tool available to parse Perl code was the ''perl'' program itself, which executed the code. The [http://search.cpan.org/dist/PPI/ PPI] tool was developed to parse, snalyzeanalyze and manipulate Perl code without actually executing it. By using this tool, the Perl::Critic module could be developed to find code that did not comply with the coding standards recommended by the book. It was eventually expanded to find violations of many policies not originally found in the book.
 
== Resources ==