sort-js-object-keys icon indicating copy to clipboard operation
sort-js-object-keys copied to clipboard

[Feature Request] Inline comments

Open lonix1 opened this issue 5 years ago • 1 comments

This extension already supports comments like this

const foo = {
  // some comment
  b : 2,
  // another comment
  a : 1,
}

But it doesn't support inline comments like this

const foo = {
  b : 2,                                 // some comment
  a : 1,                                 // another comment
}

The second form is just as common as the first one. It would be nice if both were supported.

lonix1 avatar Mar 27 '19 09:03 lonix1

Thanks for this suggestion, I will mark this as a feature.

SBeator avatar Mar 28 '19 01:03 SBeator