Created
March 18, 2017 15:20
-
-
Save bells17/d4b10d5e300ab0dc9afa3b376cefb39d to your computer and use it in GitHub Desktop.
Perl::Lint sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use Perl::Lint; | |
use Data::Dumper; | |
$Data::Dumper::Terse = 1; | |
my $linter = Perl::Lint->new; | |
my $violations = $linter->lint([@ARGV]); | |
print Dumper $violations; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment