blah("whatever");
blah("this", "that", "more of this", "and another option that makes the line super looooooooong");
####
blah("whatever");
blah("this",
"that",
"more of this",
"and another option that makes the line super looooooooong");
####
--indent-columns=4 # Indent 4 spaces
--check-syntax # perl -c file for a second opinion
--maximum-line-length=200 # Maximum line length
--continuation-indentation=2 # Continuatioin indentation
--nooutdent-labels # No outdenting of labels
--paren-tightness=2 # Parens tightness
--square-bracket-tightness=1 # Square bracket tightness
--paren-tightness=2 # Brace tightness
--nospace-for-semicolon # No for semicolon
--space-after-keyword=1 # Add space between keyword and opening paren
--opening-brace-on-new-line # Opening brace always on new line
--vertical-tightness=0 # Always break line after {
--vertical-tightness-closing=0 # Always break line befor }
--blanks-before-comments # Blank line before comments
--blanks-before-subs # Blank line before subs
####
blah(
"some argument over 80 characters");