Search results for "module:Perl::Critic::Policy::RegularExpressions::RequireLineBoundaryMatching"
Perl::Critic::Policy::RegularExpressions::RequireLineBoundaryMatching - Always use the /m modifier with regular expressions.
Folks coming from a "sed" or "awk" background tend to assume that '$' and '^' match the beginning and end of the line, rather than then beginning and end of the string. Adding the '/m' flag to your regex makes it behave as most people expect it shoul...
PETDANCE/Perl-Critic-1.148 - 07 Jan 2023 21:26:26 UTC
Perl::Critic::Policy::Compatibility::PerlMinimumVersionAndWhy - explicit Perl version for features used
This policy is part of the "Perl::Critic::Pulp" add-on. It requires that you have an explicit "use 5.XXX" etc for the Perl syntax features you use, as determined by "Perl::MinimumVersion". use 5.010; # the // operator is new in perl 5.010 print $x //...
KRYDE/Perl-Critic-Pulp-99 - 28 Feb 2021 08:34:14 UTC