-
Notifications
You must be signed in to change notification settings - Fork 1k
/
perltidyrc
62 lines (42 loc) · 1.01 KB
/
perltidyrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# max line width is 132 cols
-l=132
# indent level is 4 cols
-i=4
# entab at 4 cols
-et=4
# continuation indent is 4 cols
-ci=4
# output to stdout
-st
# errors to stderr
-se
# medium vertical tightness
-vt=2
# no extra indentation for closing brackets
-cti=0
# minimum parenthesis tightness
-pt=0
# medium brace tightness
-bt=1
# medium square bracket tightness
-sbt=1
# medium block brace tightness
-bbt=1
# no space before semicolons
-nsfs
# don't outdent long quoted strings
-nolq
# break before all operators
-wbb="% + - * / x != == >= <= =~ !~ < > | & = **= += *= &= <<= &&= -= /= |= >>= ||= .= %= ^= x="
# No whitespace after semi-colons
-nwrs=";"
# Cuddle else
-ce
# Add whitespace before separating semi-colons in for statements
-sfs
# Always put opening code block brace on right
-bar
# Cuddle opening tokens with preceding commas (eg, "}, {" instead of "},\n\t{")
-otr
# Always break after an opening non-block brace
-bvt=0