The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Git::Lint::Check::Message::SummaryLength - check summary length

SYNOPSIS

 my $plugin = Git::Lint::Check::Message::SummaryLength->new();

 my $input = $plugin->message( file => $filepath );
 my @lines = @{$input};
 my @issues = $plugin->check( \@lines );

DESCRIPTION

Git::Lint::Check::Message::SummaryLength is a Git::Lint::Check::Message module which checks git commit message input to ensure the summary line is 50 characters or less.

METHODS

check