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
With this change would be possible to have more code style control with external tools, like Haxe Formatter.
For example:
someLongCall(more, arguments,);
// format as:someLongCall(
more,
arguments,
);
// and without wrap when there is no commasomeLongCall(more, arguments);
The text was updated successfully, but these errors were encountered:
With this change would be possible to have more code style control with external tools, like Haxe Formatter.
For example:
The text was updated successfully, but these errors were encountered: