Bug 130415

Summary: Consider adding indent spacing guideline to the style guide and style check script.
Product: WebKit Reporter: Samuel White <samuel_white>
Component: WebKit Misc.Assignee: Nobody <webkit-unassigned>
Status: NEW ---    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   

Description Samuel White 2014-03-18 13:03:22 PDT
Often I see situations like the following:
...
if (condition) {
    firstThing;
    secondThing;

    otherThing;
}
...

Should the newline between secondThing and otherThing have four spaces to match the surrounding indent level or not?