Created
July 21, 2010 12:13
-
-
Save Htbaa/484396 to your computer and use it in GitHub Desktop.
.perltidyrc
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Perl Best Practices (plus errata) .perltidyrc file | |
-l=98 # Max line width is 98 cols | |
-i=4 # Indent level is 4 cols | |
-ci=4 # Continuation indent is 4 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 | |
-wbb="% + - * / x != == >= <= =~ < > | & **= += *= &= <<= &&= -= /= |= >>= ||= .= %= ^= x=" | |
# Break before all operators | |
# Extras/overrides/deviations from Perl Best Practices | |
--maximum-line-length=78 # Be less generous | |
--warning-output # Show warnings | |
--maximum-consecutive-blank-lines=2 # Default is 1 | |
--nohanging-side-comments # Troublesome for commented out code | |
-isbc # Block comments may only be indented if they have some space characters before the # | |
-ci=2 # Continuation indent is 2 cols | |
# We use version control, so just rewrite the file | |
-b | |
# For the up-tight folk :) | |
-pt=2 # High parenthesis tightness | |
-bt=2 # High brace tightness | |
-sbt=2 # High square bracket tightness |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment