Thread perltidy - Schlüssel in Hashreferenz für Zuweisung in Abfrage falsch eingerückt (19 answers)
Opened by Dachschaden at 2013-10-19 18:51

GwenDragon
 2013-10-19 18:59
#171310 #171310
User since
2005-01-17
14608 Artikel
Admin1
[Homepage]
user image
Meine .perltidyrc
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# .perltidyrc configuration file
-pbp # Start with Perl Best Practices
-l=78 # Max line width is 78 cols
-i=4 # Indent level is 4 cols
-ci=2 # Continuation indent is 2 cols
-st # Output to STDOUT
-se # Errors to STDERR
-vt=2 # Maximal vertical tightness
-cti=0 # No extra indentation for closing brackets
-pt=1 # Medium parenthesis tightness
-bt=1 # Medium brace tightness
-sbt=1 # Medium square bracket tightness
-bbt=1 # Medium block brace tightness
-nsfs # No space before semicolons
-nolq # Don't outdent long quoted strings
-nbbc # no blank lines before comments
-isbc # Don't indent comments without leading space
-wbb="% + - * / x != == >= <= =~ !~ < > | & >= < = **= += *= &= <<= &&= -= /= |= >>= ||= .= %= ^= x="
# Break before all operators

Damit schauts dann so aus:
Code (perl): (dl )
1
2
3
4
5
my %a;
my $b = { 'c' => 0, 'd' => 0 };
if (1) {
    $a{ $b->{'c'} } = $b->{'d'};
}

View full thread perltidy - Schlüssel in Hashreferenz für Zuweisung in Abfrage falsch eingerückt