The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Git::Lint::Check::Message::BlankLineAfterSummary - check for blank line after summary

SYNOPSIS

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

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

DESCRIPTION

Git::Lint::Check::Message::BlankLineAfterSummary is a Git::Lint::Check::Message module which checks git commit message input to ensure summary is followed by a blank line.

METHODS

check