xref: /openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/perltidyrc (revision f2a19305cfc49ea4d1a5feb55cd6c283c6f1e031)
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-2022 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-nbbc           # don't force blank lines before comments (bad for else blocks)
22-boc            # do not re-break lists, since perltidy is awful at this
23-ce             # cuddle braces around else
24-l=79           # usually use 78, but don't want 79-long lines reformatted
25-nlop           # disable vertical alignment of logical and ternary expressions
26-pt=2           # don't add extra whitespace around parentheses
27-sbt=2          # ...or square brackets
28-nsfs           # no space before semicolon in for (not that I use this form)
29-nvc            # disable vertical alignment of = and similar symbols
30-xci            # improve indentation of nested structures
31