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
The patch to #1377 breaks beautification when "<%" is present.
"<%"
Template handling should be optional and preferably off by default (maybe on by default for HTML, but definitely off by default for JS).
Test case:
"<%";if(0){}
Expected:
"<%"; if (0) {}
Actual:
This even happens if I set the dropdown to "Beautify JavaScript" to force beautification as JS rather than autodetect.
The text was updated successfully, but these errors were encountered:
Duplicate of #1647.
Sorry, something went wrong.
No branches or pull requests
The patch to #1377 breaks beautification when
"<%"
is present.Template handling should be optional and preferably off by default (maybe on by default for HTML, but definitely off by default for JS).
Test case:
"<%";if(0){}
Expected:
Actual:
This even happens if I set the dropdown to "Beautify JavaScript" to force beautification as JS rather than autodetect.
The text was updated successfully, but these errors were encountered: