Skip to content

de-indent for Newline immediately following "(" #31

@cgay

Description

@cgay

What we have now:

let foo = really-long-function-name(
                                    long-argument-1(),
                                    long-argument-2())

What I want:

let foo = really-long-function-name(
             long-argument-1(),
             long-argument-2())

Note, never this:

let foo = really-long-function-name(argument-0-on-same-line(),
             long-argument-1(),
             long-argument-2())

If there's an argument immediately following the open paren then subsequent args should line up under the first (as they do currently):

let foo = really-long-function-name(long-argument-1(),
                                    long-argument-2())

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions