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.