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
Indent is not respected on multiline comments.
Example: (the first line has the correct level of indentation)
/** * jsdoc comments */
The text was updated successfully, but these errors were encountered:
You should be able to set the escodegen adjustMultilineComment option to true, to make sure that multi-line comments line up. Like this:
escodegen
true
'escodegen': { 'format': { 'indent': { 'adjustMultilineComment': true } } }
Sorry, something went wrong.
Compiled code is so pretty now :D Should be enabled by default. I can dig around and submit a PR?
It's getting better! And I would love a PR for this to be added as a default option. The change will most likely be here
The adjustMultilineComment option has been added as a default option in the 1.5.0 release.
adjustMultilineComment
1.5.0
gfranko
No branches or pull requests
Indent is not respected on multiline comments.
Example: (the first line has the correct level of indentation)
The text was updated successfully, but these errors were encountered: