prettier-plugin-coffeescript icon indicating copy to clipboard operation
prettier-plugin-coffeescript copied to clipboard

Formatting: option for "double-indented" breaking conditions?

Open helixbass opened this issue 6 years ago • 0 comments

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
  ...

helixbass avatar Mar 24 '19 13:03 helixbass