17 lines
604 B
Plaintext
17 lines
604 B
Plaintext
-pbp # Start with Perl Best Practices
|
|
-w # Show all warnings
|
|
-bom # Breaks before method call arrow -> are preserved
|
|
-l=80 # 80 characters per line
|
|
-mbl=2 # No more than 2 blank lines
|
|
-i=2 # Indentation is 2 columns
|
|
-ci=2 # Continuation indentation is 2 columns
|
|
-vt=0 # Less vertical tightness
|
|
-pt=1 # Always spaces in parentheses except if there is only one argument
|
|
-bt=0 # Low brace tightness
|
|
-sbt=0 # High square bracket tightness
|
|
-wn # Weld nested containers
|
|
-isbc # Don't indent comments without leading space
|
|
-nst # Don't output to STDOUT
|
|
-cab=2
|
|
|