Perl-Critic-Policy-logicLAB-ProhibitUseLib

 view release on metacpan or  search on metacpan

lib/Perl/Critic/Policy/logicLAB/ProhibitUseLib.pm  view on Meta::CPAN


    use lib '/some/path';                                       #not ok
    use lib qw(/you/do/not/want/to/go/down/this/path /or/this); #not ok

Instead use the environment variable PERL5LIB

    #bash
    export PERL5LIB='/some/path/some/where'

    #tcsh and csh
    setenv PERL5LIB '/some/path/some/where'

=head1 CONFIGURATION AND ENVIRONMENT

This Policy is not configurable except for the standard options.

=head1 DEPENDENCIES AND REQUIREMENTS

=over

=item * L<Perl::Critic>



( run in 1.994 second using v1.01-cache-2.11-cpan-6aa56a78535 )