-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
Description
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.
jacksteamdev