]> eyrie.org Git - kerberos/krb5-strength.git/blob - tests/data/perltidyrc
Merge pull request #4 from dariaphoebe/main
[kerberos/krb5-strength.git] / tests / data / perltidyrc
1 # -*- conf -*-
2 #
3 # Default options for perltidy for proper Perl code reformatting.
4 #
5 # The canonical version of this file is maintained in the rra-c-util package,
6 # which can be found at <https://www.eyrie.org/~eagle/software/rra-c-util/>.
7 #
8 # Written by Russ Allbery <eagle@eyrie.org>
9 # Copyright 2021-2023 Russ Allbery <eagle@eyrie.org>
10 # Copyright 2012-2013
11 #     The Board of Trustees of the Leland Stanford Junior University
12 #
13 # Copying and distribution of this file, with or without modification, are
14 # permitted in any medium without royalty provided the copyright notice and
15 # this notice are preserved.  This file is offered as-is, without any
16 # warranty.
17 #
18 # SPDX-License-Identifier: FSFAP
19
20 -bbao           # put line breaks before any operator
21 -bfvt=2         # no newline before "or" after closing brace
22 -nbbc           # don't force blank lines before comments (bad for else blocks)
23 -boc            # do not re-break lists, since perltidy is awful at this
24 -cpb            # put opening brace on same line as closing paren
25 -ce             # cuddle braces around else
26 -l=79           # usually use 78, but don't want 79-long lines reformatted
27 -nlop           # disable vertical alignment of logical and ternary expressions
28 -pt=2           # don't add extra whitespace around parentheses
29 -sbt=2          # ...or square brackets
30 -nsfs           # no space before semicolon in for (not that I use this form)
31 -nvc            # disable vertical alignment of = and similar symbols
32 -xci            # improve indentation of nested structures