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
One more cool thing would be an option to have the closing param on a new line. At my company I really want js-beautify + jshint/fixmyjs to be precommit hooks. I've already added it to my own dev environment but people keep complaining in code reviews that
foo(
a,
b)
should be
foo(
a,
b
)
What do you think? Have others requested similar changes? Is there a particular reason we shouldn't want that?
The following:
Is converted to:
I would expect something more like:
or
The text was updated successfully, but these errors were encountered: