We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
running format on this code:
type a = { foo: string, /** here */ }
output:
type a = {foo: string}
the /** ... */ style comment is deleted on the formatting result. // ... style comments are fine.
/** ... */
// ...