⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.184
Server IP:
65.21.180.239
Server:
Linux gowhm.eplangoweb.com 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.0.30
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
perl5
/
strictures
/
View File Name :
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