-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
enhancementNew feature or requestNew feature or requestwrappingIncorrect or undesirable wrappingIncorrect or undesirable wrapping
Description
For example defaults produce this in my code:
private var chatStateHandlers:Array<(String, String, Null<String>,
UserState) -> Void> = [];
This is pretty gross looking, just splitting a part of the lambda arguments to a new line, and double indenting it for some reason also.
Ideally this would format as:
private var chatStateHandlers:
Array<(String, String, Null<String>, UserState) -> Void> = [];
or similar
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestwrappingIncorrect or undesirable wrappingIncorrect or undesirable wrapping