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.