Blame t/data/perltidyrc

Packit e6c7a3
# -*- conf -*-
Packit e6c7a3
#
Packit e6c7a3
# Default options for perltidy for proper Perl code reformatting.
Packit e6c7a3
#
Packit e6c7a3
# The canonical version of this file is maintained in the rra-c-util package,
Packit e6c7a3
# which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
Packit e6c7a3
Packit e6c7a3
-bbao           # put line breaks before any operator
Packit e6c7a3
-nbbc           # don't force blank lines before comments (bad for else blocks)
Packit e6c7a3
-ce             # cuddle braces around else
Packit e6c7a3
-l=79           # usually use 78, but don't want 79-long lines reformatted
Packit e6c7a3
-pt=2           # don't add extra whitespace around parentheses
Packit e6c7a3
-sbt=2          # ...or square brackets
Packit e6c7a3
-sfs            # no space before semicolon in for (not that I use this form)