NAME
Perl::Critic::Policy::Mardem::ProhibitLargeBlock - large code block as statement count "{...}"
DESCRIPTION
This Policy counts the statements within a code block { ... } (more precise the PPI::Statement's)
CONFIGURATION
The maximum acceptable Statement-Count can be set with the statement_count_limit
configuration item. Any block with a count higher than this number will generate a policy violation. The default is 20.
An example section for a .perlcriticrc:
[Mardem::ProhibitLargeBlock]
statement_count_limit = 10
AFFILIATION
This policy is part of Perl::Critic::Mardem.
AUTHOR
Markus Demml, mardem@cpan.com
LICENSE AND COPYRIGHT
Copyright (c) 2024, 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.