|
NAMEPerl::Lint - Yet Another Perl Source Code Linter SYNOPSIS use Perl::Lint;
my $linter = Perl::Lint->new;
my $target_files = [qw(foo/bar.pl buz.pm)];
my $violations = $linter->lint($target_files);
DESCRIPTIONPerl::Lint is the yet another source code linter for perl. AIMSDevelopment of this module aims to create a fast and flexible static analyzer for Perl5 that has compatibility with Perl::Critic Please see also <http://news.perlfoundation.org/2014/03/grant-proposal-perllint---yet.html>. METHODS
PERFORMANCEBenchmark script: <https://github.com/moznion/Perl-Lint/blob/master/author/benchmark_lint_vs_critic.pl>. Rate Perl::Critic Perl::Lint
Perl::Critic 20.6/s -- -78%
Perl::Lint 92.0/s 348% --
SEE ALSOPerl::Critic LICENSECopyright (C) moznion. This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. AUTHORmoznion <moznion@gmail.com>
|