From: Simon Ruderich Date: Wed, 17 Oct 2012 23:00:33 +0000 (+0200) Subject: perl/perlcriticrc: Also allow $? and $+. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=9576dd226b9be83023388ddf2f67803836e6c74b perl/perlcriticrc: Also allow $? and $+. --- diff --git a/perl/perlcriticrc b/perl/perlcriticrc index 476ae8a..357a493 100644 --- a/perl/perlcriticrc +++ b/perl/perlcriticrc @@ -47,7 +47,7 @@ color = 1 # IMHO punctuation variables are more readable than their English counterparts # (and faster in some cases). So allow the ones I use often. [Variables::ProhibitPunctuationVars] -allow = $! $. $@ $/ $" +allow = $! $? $. $@ $/ $" $+ # Allow the usage of ".." when '..' occurs inside the string, e.g. in strings # like ".. '..' ..".