Subject: | "no critic" allows only policy names, but no fine-tuning as in .perlcriticrc |
There are two main ways to disable P::C policies: using "## no critic"
comments and using .perlcriticrc.
Some policies ca be fine-tuned using .perlcriticrc. For example:
[Variables::ProhibitPunctuationVars]
allow = %+ $+
[ControlStructures::ProhibitMutatingListFunctions]
list_funcs = map grep List::Util::first
I couldn't find a way to do it with "## no critic" comments, but it
would be useful.