max-mapper / standard-format

converts your code into Standard JavaScript Format
264 stars 59 forks source link

Allow indendation following a newline after assignment operator #101

Closed bcomnes closed 7 years ago

bcomnes commented 9 years ago
var cool =
  a +
  b +
  c

formats to

var cool =
a +
  b +
  c

But should be a noop. Issue set up as a failing test.

feross commented 7 years ago

You should use standard --fix instead of this package. standard-format isn't being actively maintained anymore.