Beta Shell
v2.0 ยท web2.us.cloudlogin.co
[FM]
[CMD]
[PHP]
[DB]
[INFO]
[SEC]
File Manager
~
/
usr
/
local
/
share
/
perl5
/
strictures
Upload
3 items
Name
Size
Perms
Modified
Actions
[ .. / .. ]
extra.pm
736 B
-r--r--r--
2015-02-01 20:32:15
Edit
Del
Editing: extra.pm
(736 B)
Path: /usr/local/share/perl5/strictures/extra.pm
Back
package strictures::extra; use strict; use warnings FATAL => 'all'; sub import { $ENV{PERL_STRICTURES_EXTRA} = 1; } sub unimport { $ENV{PERL_STRICTURES_EXTRA} = 0; } 1; __END__ =head1 NAME strictures::extra - enable or disable strictures additional checks =head1 SYNOPSIS no strictures::extra; # will not enable indirect, multidimensional, or bareword filehandle checks use strictures; =head1 DESCRIPTION Enable or disable strictures additional checks, preventing checks for C<.git> or other VCS directories. Equivalent to setting the C<PERL_STRICTURES_EXTRA> environment variable. =head1 AUTHORS See L<strictures> for authors. =head1 COPYRIGHT AND LICENSE See L<strictures> for the copyright and license. =cut