blob: 02555222b4d9d189275eeeceaade1e4f08eb1489 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
severity = 2
verbose = 9
color = 1
pager = less -R
# 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]
|