Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 272 Bytes

no-padding.md

File metadata and controls

33 lines (22 loc) · 272 Bytes

no-padding

Avoid blank lines before opening tokens or after closing tokens.

Bad:

function f() {

    return [

        g(

            0

        )

    ];

}

Good:

function f() {
    return [
        g(
            0
        )
    ];
}