We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent877b55c commitd6e0207Copy full SHA for d6e0207
src/tools/pgindent/README
@@ -44,10 +44,15 @@ This can format all PostgreSQL *.c and *.h files, but excludes *.y, and
44
pg_ctl start
45
gmake installcheck-world
46
47
-9) Indent the Perl MSVC code:
48
-
49
-cd src/tools/msvc
50
-perltidy -b -bl -nsfs -naws -l=100 -ole=unix *.pl *.pm
+9) Indent the Perl code:
+
+find . -name \*.pl -o -name \*.pm | xargs perltidy \
+--backup-and-modify-in-place --opening-brace-on-new-line \
51
+--vertical-tightness=2 --vertical-tightness-closing=2 \
52
+--nospace-after-keyword=for --nospace-for-semicolon \
53
+--add-whitespace --delete-old-whitespace --paren-tightness=2 \
54
+--keep-old-blank-lines=2 --maximum-line-length=78 \
55
+--entab-leading-whitespace=4 --output-line-ending=unix
56
57
---------------------------------------------------------------------------
58