The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Perl::Critic::Policy::Modules::ProhibitSpecificModules

DESCRIPTION

Use this policy if you wish to prohibit the use of certain modules. These may be modules that you feel are deprecated, buggy, unsupported, insecure, or just don't like.

CONSTRUCTOR

This policy accepts an additional key-value pair in the new method. The key should be 'modules' and the value should be a reference to an array of module names that you want to prohibit. Alternatively, the value can be a string of space-delimited module names. These can be configured in the .perlcriticrc file like this:

 [Modules::ProhibitSpecificModules]
 modules = Getopt::Std  Autoload

 #or 

 [Modules::ProhibitSpecificModules]
 modules = Getopt::Std
 modules = Autoload

By default, there aren't any prohibited modules (although I can think of a few that should be).

NOTES

Note that this policy doesn't apply to pragmas. Future versions may allow you to specify an alternative for each prohibited module, which can be suggested by Perl::Critic.

AUTHOR

Jeffrey Ryan Thalhammer <thaljef@cpan.org>

Copyright (c) 2005 Jeffrey Ryan Thalhammer. All rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. The full text of this license can be found in the LICENSE file included with this module.