-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
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())