Provided by: libcode-tidyall-perl_0.32~dfsg-1_all bug

NAME

       Test::Code::TidyAll - Check that all your files are tidy and valid according to tidyall

VERSION

       version 0.32

SYNOPSIS

         In a file like 't/tidyall.t':

           #!/usr/bin/perl
           use Test::Code::TidyAll;
           tidyall_ok();

DESCRIPTION

       Uses tidyall --check-only to check that all the files in your project are in a tidied and
       valid state, i.e. that no plugins throw errors or would change the contents of the file.
       Does not actually modify any files.

       By default, looks for config file "tidyall.ini" or ".tidyallrc" in the current directory
       and parent directories, which is generally the right place if you are running prove.

       Passes mode = "test" by default; see modes.

       "tidyall_ok" is exported by default. Any options will be passed along to the Code::TidyAll
       constructor. For example, if you don't want to use the tidyall cache and instead check all
       files every time:

           tidyall_ok(no_cache => 1);

       or if you need to specify the config file:

           tidyall_ok(conf_file => '/path/to/conf/file');

SEE ALSO

       tidyall

AUTHORS

       ·   Jonathan Swartz <swartz@pobox.com>

       ·   Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

       This software is copyright (c) 2011 - 2015 by Jonathan Swartz.

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