Describe the Feature
There is no way to configure wrapping for comparison operators, to allow prettier long if conditions. I have this code:
if (this.actionsByPriority.indexOf(action) < this.actionsByPriority.indexOf(availableAction) {}
Desired output
if (
this.actionsByPriority.indexOf(action) <
this.actionsByPriority.indexOf(availableAction)
) {}