For example, with
--nostandard-output --backup-and-modify-in-place --backup-file-extension=/ --maximum-line-length=100 --indent-columns=4 --continuation-indentation=4 --noline-up-parentheses --closing-token-indentation=0 --output-line-ending=unix --blanks-before-comments --blank-lines-before-subs=1 --blank-lines-before-packages=1 --blanks-before-blocks --long-block-line-count=1 --blank-lines-after-opening-block=0 --blank-lines-before-closing-block=0 --maximum-consecutive-blank-lines=1 --indent-block-comments --nooutdent-long-comments --fixed-position-side-comment=0 --ignore-side-comment-lengths --nohanging-side-comments --minimum-space-to-comment=1 --noclosing-side-comments --cuddled-else --noopening-brace-on-new-line --noopening-sub-brace-on-new-line --noopening-anonymous-sub-brace-on-new-line --nobrace-left-and-indent --noopening-token-right --vertical-tightness-closing=0 --block-brace-vertical-tightness=0 --stack-opening-tokens --nostack-closing-tokens --nodelete-old-newlines --add-newlines --brace-vertical-tightness-closing=0 --nobreak-at-old-comma-breakpoints --comma-arrow-breakpoints=0 --break-at-old-logical-breakpoints --break-at-old-keyword-breakpoints --break-at-old-ternary-breakpoints --break-at-old-attribute-breakpoints --ignore-old-breakpoints --nokeep-interior-semicolons --novalign --converge

the following part of the code (note the tabs)

Exception::throw( sprintf( 'Problem accessing resource on URI: "%s" by "%s" at "% +s, line %s".', $uri, caller() ) );

was tidied to

Exception::throw( sprintf( 'Problem accessing resource on URI: "%s" by "%s" at "%s, line %s".', $uri, caller() ) );

Basically, long lines are broken in unexpected places, ternary operator is rendered unreadable, etc.

($q=q:Sq=~/;[c](.)(.)/;chr(-||-|5+lengthSq)`"S|oS2"`map{chr |+ord }map{substrSq`S_+|`|}3E|-|`7**2-3:)=~y+S|`+$1,++print+eval$q,q,a,

In reply to Re^4: To <=80 char code line length or not by choroba
in thread To <=80 char code line length or not by stevieb

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.