NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Here's mine (Score:1)
--check-syntax # Ask perl to check the syntax of the file
--backup-and-modify-in-place # Dont output to another file
--backup-file-extension=.tdy.bak # Backup.pl.tdy.bak
--logfile # Save a log of what's going on
# Formatting
--output-line-ending=unix
--format-skipping # Skip formatting between #<<< #>>>
# Indentation
--tabs # Tabs = Indentation Level
--add-whitespace # White spaces to prettify
--add-newlines
--delete-old-whitespace # Don't bother with old indentations
--delete-old-newlines
--ignore-old-breakpoints
--maximum-line-length=128
--no-outdent-long-lines
# Semicolons:
--no-space-terminal-semicolon # No spaces before ;
--no-space-for-semicolon
--add-semicolons # Add them if missing before }
--delete-semicolons # And delete them on epmty statements
# Subscripts (, [, {
--continuation-indentation=8 # Pretify Indent
#--line-up-parentheses #! Doesnt work with tabs
--closing-token-indentation=0 # Same Indent Level as where is was opened
--no-indent-closing-paren
--opening-paren-right
--opening-hash-brace-right
--opening-square-bracket-right
--opening-token-right
--vertical-tightness=1 # Dont break before line end
--vertical-tightness-closing=0
-sot # --stack-opening-token, the long opt name doesn't work!
--comma-arrow-breakpoints=2
# Braces
--cuddled-else
--no-opening-brace-on-new-line
--opening-brace-always-on-right
--no-opening-sub-brace-on-new-line
--block-brace-vertical-tightness=0
# Quotes
--no-outdent-long-quotes
--trim-qw
# Code Blocks
--no-outdent-labels
--no-indent-closing-brace
--blanks-before-blocks
--blanks-before-subs
# Keywords/Functions
--no-outdent-keywords # Dont outdent keywords (loops)
--space-keyword-paren
--no-space-function-paren
# Comments
--indent-spaced-block-comments
--no-outdent-long-comments
--minimum-space-to-comment=8
--hanging-side-comments
--closing-side-comments # End of sub
#--closing-side-comment-prefix="## <--- EOf" #! problems with old files
--closing-side-comment-warnings # Warn if modifying an existing comment
--closing-side-comment-maximum-text=64 # Max 64 Chars
--blanks-before-comments
Reply to This
Wow!! (Score:1)
Did anyone ever tell you that you have too much time on your hands?
Re: (Score:1)
if you want some here's a list of my must have (they're in
-
-
-
-
-
-
-
-
-
-
-
Re: (Score:1)
yep. I am. Thanks
Re: (Score:1)
I just ask for the delay to clean up my config directory, it's a real mess in there and i don't have the time to sort everything right now.
Re: (Score:1)
Take your time. I asked because I was curious to see how people organize their things. Lately I seem to waste time in simple yet important tasks with a net result of less time to code :(. Having a working (and portable) set of config files is certainly an asset.
cheers --stephan