Heray-Was-Here
Server : Apache
System : Linux vps103298.mylogin.co 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64
User : calvet ( 273824)
PHP Version : 7.4.33
Disable Function : NONE
Directory :  /proc/thread-self/root/proc/self/root/usr/local/share/perl5/strictures/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //proc/thread-self/root/proc/self/root/usr/local/share/perl5/strictures/extra.pm
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

Hry