-
Notifications
You must be signed in to change notification settings - Fork 23
Open
Labels
enhancementNew feature or requestNew feature or request
Description
While I am actually a fan of Multiliner's current formatting behavior, some people might prefer not having a line-break between the method name and the first parameter.
Current Behavior
func sendAppStatus(
to toNodes: [Node],
name: String?,
bundleID: String,
state: Int32,
isDockApp: Bool
) {
// ...
}Proposed opt-in behavior (as a preference)
First parameter starts on the same line, and closing parens trails immediately after the last parameter.
func sendAppStatus(to toNodes: [Node],
name: String?,
bundleID: String,
state: Int32,
isDockApp: Bool) {
// ...
}Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request