The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
our $VERSION = '0.014';
sub new {
my $class = shift;
my $self = {};
bless $self, $class;
return $self;
}
1;
__END__
=pod
=head1 NAME
Git::Lint::Check - constructor for Git::Lint::Check modules
=head1 SYNOPSIS
use Git::Lint::Check;
my $check = Git::Lint::Check->new();
=head1 DESCRIPTION
C<Git::Lint::Check> provides a contructor for child modules.
This module is not meant to be initialized directly.
=head1 CONSTRUCTOR
=over
=item new
Returns the C<Git::Lint::Check> object.
=back
=cut