This:
while a
; # eslint-disable-line no-empty
is getting formatted like:
while a
# eslint-disable-line no-empty
;
And more problematic, this:
is getting formatted like:
which is a parse error (not sure why the semicolon is disappearing eg whether it's on the Coffeescript AST side or the Prettier side)
This:
is getting formatted like:
And more problematic, this:
is getting formatted like:
which is a parse error (not sure why the semicolon is disappearing eg whether it's on the Coffeescript AST side or the Prettier side)