aboutsummaryrefslogtreecommitdiff
path: root/perlcritic/perlcriticrc
diff options
context:
space:
mode:
Diffstat (limited to 'perlcritic/perlcriticrc')
-rw-r--r--perlcritic/perlcriticrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/perlcritic/perlcriticrc b/perlcritic/perlcriticrc
index c3fda080..7428792a 100644
--- a/perlcritic/perlcriticrc
+++ b/perlcritic/perlcriticrc
@@ -11,6 +11,6 @@ severity = brutal
add_exceptions = inet4 inet6 ipv4 ipv6
# Soften this policy a bit; tolerate all the single-digit integers as literals,
-# and also 100 (for calculating percentages)
+# and also three powers of 10 (for percentages, milliseconds etc)
[ValuesAndExpressions::ProhibitMagicNumbers]
-allowed_values = 0..9 100
+allowed_values = 0..9 10 100 1000