# Configuration for proper Perl code automated reformatting.  -*- conf -*-
#
# This configuration requires perltidy 20220217 or later.

-b              # modify the file in place
-bext='/'       # ...without backuping the file (Git permits restoring it)
-w              # report warning messages as errors
-bbao           # put line breaks before any operator
-bal=1          # put line breaks after a label
-nbbc           # don't force blank lines before comments (bad for else blocks)
-boc            # do not re-break lists, since perltidy is awful at this
-ce             # cuddle braces around else
-l=79           # default is 80 but INN coding style is 79 for all languages
-pt=2           # don't add extra whitespace around parentheses
-sbt=2          # ...or square brackets
-nsfs           # no space before semicolon in for
-xci            # improve indentation of nested structures
-vil='=>'       # enable vertical alignment for hashes definitions
-nlop           # disable vertical alignment of logical and ternary expressions

# Uncomment to generate .LOG files.
#-log           # keep the log (containing information like outdented lines)
