NAME
Perl::Critic::Policy::ProhibitImplicitImport - Prefer symbol imports to be explicit
VERSION
version 0.000001
DESCRIPTION
Some Perl modules can implicitly import many symbols if no imports are specified. To avoid this, and to assist in finding where symbols have been imported from, specify the symbols you want to import explicitly in the use
statement. Alternatively, specify an empty import list with use Foo ()
to avoid importing any symbols at all, and fully qualify the functions or constants, such as Foo::strftime
.
For modules which inherit from Test::Builder::Module, you may need to use a different import syntax.
CONFIGURATION
By default, this policy ignores many modules (like Moo and Moose) for which implicit imports provide the expected behaviour. See the source of this module for a complete list. If you would like to ignore additional modules, this can be done via configuration:
[ProhibitImplicitImport]
ignored_modules = Git::Sub Regexp::Common
ACKNOWLEDGEMENTS
Much of this code and even some documentation has been inspired by and borrowed directly from Perl::Critic::Policy::Freenode::POSIXImports and Perl::Critic::Policy::TooMuchCode.
AUTHOR
Olaf Alders <olaf@wundercounter.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2020 by Olaf Alders.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.