You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// suppose this exceeds max line width...let value = my_function(param1, param2, param3, param4, param5);// option 1let value =
my_function(param1, param2, param3, param4, param5);// option 2let value = my_function(
param1,
param2,
param3,
param4,
param5,);
In my opinion, option 1 is very ugly. Would be great if a new config option is added that enforces option 2.
The text was updated successfully, but these errors were encountered:
larry0x
changed the title
Feature request: avoid line break after the = in assignment statements
Add option to avoid line break after the = in let statements
May 22, 2024
In my opinion, option 1 is very ugly. Would be great if a new config option is added that enforces option 2.
The text was updated successfully, but these errors were encountered: