prettier-plugin-coffeescript
prettier-plugin-coffeescript copied to clipboard
Formatting: option for "double-indented" breaking conditions?
Currently when eg an if condition breaks, it uses parens eg
if (
someLongCondition
and somethingElse
)
...
I think some people would prefer/find it more "Coffeescript-y" to format it like
if someLongCondition
and somethingElse
...