blob: 12c09a453e77b9611002da4fb20da05bc93d360b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
######################################################################
#
# src/tools/perlcheck/perlcriticrc
#
# config file for perlcritic for Postgres project
#
#####################################################################
severity = 5
theme = core
# allow octal constants with leading zeros
[-ValuesAndExpressions::ProhibitLeadingZeros]
# for now raise severity of this to level 5
[Subroutines::RequireFinalReturn]
severity = 5
|