# Configuration for proper Perl code automated reformatting.  -*- conf -*-
#
# This configuration requires perltidy 20230309 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
-bfvt=2         # no newline before "or" after closing brace
-nbbc           # don't force blank lines before comments (bad for else blocks)
-boc            # do not re-break lists, since perltidy is awful at this
-cpb            # put opening brace on same line as closing parenthese
-ce             # cuddle braces around else
-l=79           # default is 80 but INN coding style is 79 for all languages
-nlop           # disable vertical alignment of logical and ternary expressions
-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

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