summaryrefslogtreecommitdiffstats
path: root/.perlcriticrc
blob: 1d5732a7cc045e84ca687d9869720ee104b5ec1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Arguments are not modified.
[-Subroutines::RequireArgUnpacking]

# The expressions are pretty short and understandable.
[-RegularExpressions::RequireExtendedFormatting]

# drhtz() and drhfz() intentionally compare strings numerically.
[-ValuesAndExpressions::ProhibitMismatchedOperators]

# Maybe it's not idiomatic, but I disagree with these.
[-ValuesAndExpressions::ProhibitEmptyQuotes]
[-ValuesAndExpressions::ProhibitNoisyQuotes]

# Anchors should match across multiple lines, if anyone is dumb enough to put
# line breaks in their numbers.
[-RegularExpressions::RequireLineBoundaryMatching]

# There are no dots.
[-RegularExpressions::RequireDotMatchAnything]