On Tue, Jan 21, 2014 at 7:15 PM, Zoltan Horvath <[email protected]> wrote:

> Hi there,
>
> I think the 4 spaces indentation doesn't make the code harder to read.
>
> If we stay with that, it will be more consistent in long term, since
> otherwise you'd allow almost random-size indentation, based on the
> particular code part.
>

Right.  The biggest rationale behind this rule, however, is that aligning
lines will increase the cost of future refactoring.

Consider what happens if someFunction was renamed to someOtherFunction.  If
we left the second and subsequent lines intact, we'll have unaligned
indentations.  If we did update the subsequent line to be aligned, then
we'll be making unnecessary whitespace changes in those lines and clutters
the subversion blame history.

- R. Niwa
_______________________________________________
webkit-dev mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-dev

Reply via email to