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

NAME

Perl::Critic::Policy::Mardem::ProhibitBlockComplexity

DESCRIPTION

This Policy approximates the McCabe score within a code block "eg if() {...}".

See http://en.wikipedia.org/wiki/Cyclomatic_complexity

It should help to find complex code block, which should be extracted into subs, to be more testable.

eg. from

  if( $a ) {
    ...
    ...
    ...
  }

to

  if( $a ) {
    do_something();
  }

CONFIGURATION

The maximum acceptable McCabe can be set with the max_mccabe configuration item. Any block with a McCabe score higher than this number will generate a policy violation. The default is 10.

An example section for a .perlcriticrc:

  [Mardem::ProhibitBlockComplexity]
  max_mccabe = 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.