Skip to content

Latest commit

 

History

History
32 lines (28 loc) · 386 Bytes

File metadata and controls

32 lines (28 loc) · 386 Bytes

Fix formatting for auto-accessors with comments (#14038 by @fisker)

// Input
class A {
  @dec()
  // comment
  accessor b;
}

// Prettier stable
class A {
  @dec()
  accessor // comment
  b;
}

// Prettier stable (second format)
class A {
  @dec()
  accessor; // comment
  b;
}

// Prettier main
class A {
  @dec()
  // comment
  accessor b;
}