We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parsing
function x() { return {thing : 'b'} }
comes out as
function x() { return{thing : 'b'} }
instead of
function x() { return; {thing : 'b'} }
The text was updated successfully, but these errors were encountered:
this is esformatter fault: https://github.com/millermedeiros/esformatter/blob/31e6cac57a31ba95ba90a4d575eced7bf68b3f2d/lib/hooks/ReturnStatement.js#L10-L15
Sorry, something went wrong.
weird that I had a commit before that checked the ASI behavior: millermedeiros/esformatter@ad6cd85
No branches or pull requests
Parsing
comes out as
instead of
The text was updated successfully, but these errors were encountered: