Bug 130415 - Consider adding indent spacing guideline to the style guide and style check script.
Summary: Consider adding indent spacing guideline to the style guide and style check s...
Status: NEW
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKit Misc. (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-18 13:03 PDT by Samuel White
Modified: 2014-03-18 13:03 PDT (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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?