forked from jwilk/ubanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.perlcriticrc
36 lines (25 loc) · 821 Bytes
/
.perlcriticrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
severity = 1
verbose = %f:%l: [%p] %m\n
[-CodeLayout::RequireTidyCode]
# no, thanks
[-ErrorHandling::RequireCarping]
# die is good enough for our purposes
[InputOutput::ProhibitBacktickOperators]
only_in_void_context = 1
[InputOutput::RequireCheckedSyscalls]
functions = :builtins
[-Modules::RequireVersionVar]
# useful only for modules
[-RegularExpressions::RequireDotMatchAnything]
[-RegularExpressions::RequireLineBoundaryMatching]
# no, thanks
[-RegularExpressions::RequireExtendedFormatting]
# no, thanks
[-ValuesAndExpressions::ProhibitEmptyQuotes]
[-ValuesAndExpressions::ProhibitNoisyQuotes]
# no, thanks
[-ValuesAndExpressions::ProhibitMagicNumbers]
# no, thanks
[-ValuesAndExpressions::ProhibitVersionStrings]
# we don't care about Perl << 5.6, which doesn't support version strings
# vim:ft=dosini