The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Perl::Critic::Policy::Mardem::ProhibitManyConditionsInSub

DESCRIPTION

This Policy counts the conditions within a sub. (more precise the PPI::Structure::Condition's, PPI::Structure::For's and PPI::Structure::Given's)

CONFIGURATION

The maximum acceptable Condition-Count can be set with the condition_count_limit configuration item. Any sub with a count higher than this number will generate a policy violation. The default is 3.

An example section for a .perlcriticrc:

  [Mardem::ProhibitManyConditionsInSub]
  condition_count_limit = 1

AFFILIATION

This policy is part of Perl::Critic::Mardem.

AUTHOR

Markus Demml, mardem@cpan.com

LICENSE AND COPYRIGHT

Copyright (c) 2022, Markus Demml

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