#!perl

use strict;
use warnings;
use 5.026;


use Test2::V0;
use Test::SpellCheck;

# PODNAME: spellcheck
# DESCRIPTION: Command line interface to Test::SpellCheck
our $VERSION = '0.02'; # VERSION





if(-f 'spellcheck.ini')
{
  local $Test::SpellCheck::VERBOSE = 1;
  spell_check_ini;
}
else
{
  local $Test::SpellCheck::VERBOSE = 1;
  spell_check;
}
done_testing;

__END__

=pod

=encoding UTF-8

=head1 NAME

spellcheck

=head1 VERSION

version 0.02

=head1 AUTHOR

Graham Ollis <plicease@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2021-2024 by Graham Ollis.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut
