in reply to Re: The One True Style of indentation:
in thread The One True Style of indentation:

Absolutely. I use
function(arguments) { if (condition) { ... } else { ... } }
Brace placement is far more important to me than indentation, though I use tabs for that with four spaces as my second choice, if, for instance, the tab key breaks or starts printing Ős. That's never happened, but if it did I'd use four spaces and buy a new keyboard. But something like
function(arguments) { if (condition) { ... } else { ... } }
is unreadable.

Replies are listed 'Best First'.
Re^3: The One True Style of indentation:
by Aristotle (Chancellor) on Oct 27, 2002 at 14:29 UTC
    Absolutely. If you want to do it right, it would have to look like this:
    function(arguments) { if (condition) { ... } else { ... } }

    Makeshifts last the longest.