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::Commit::IndentSpaces - check for indent spaces

SYNOPSIS

 my $plugin = Git::Lint::Check::Commit::IndentSpaces->new();

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

DESCRIPTION

Git::Lint::Check::Commit::IndentSpaces is a Git::Lint::Check::Commit module which checks git diff input and warns for indent spaces.

METHODS

check

Method that defines the check subref and passes it to Git::Lint::Check::Commit's parse method.