table of contents
Perl::Critic::Policy::Community::WarningsSwitch(3pm) | User Contributed Perl Documentation | Perl::Critic::Policy::Community::WarningsSwitch(3pm) |
NAME¶
Perl::Critic::Policy::Community::WarningsSwitch - Scripts should not use the -w switch on the shebang line
DESCRIPTION¶
The "-w" switch enables warnings globally in a perl program, including for any modules that did not explicitly enable or disable any warnings. The "-W" switch enables warnings even for modules that explicitly disabled them. The primary issue with this is enabling warnings for code that you did not write. Some of these modules may not be designed to run with warnings enabled, but still work fine. Instead, use warnings within your own code only.
#!/usr/bin/perl -w # not ok #!/usr/bin/perl -W # not ok use warnings; # ok
AFFILIATION¶
This policy is part of Perl::Critic::Community.
CONFIGURATION¶
This policy is not configurable except for the standard options.
AUTHOR¶
Dan Book, "dbook@cpan.org"
COPYRIGHT AND LICENSE¶
Copyright 2015, Dan Book.
This library is free software; you may redistribute it and/or modify it under the terms of the Artistic License version 2.0.
SEE ALSO¶
Perl::Critic, warnings
2022-07-25 | perl v5.40.0 |