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
/* beautify preserve:end */ is ignored. Thus any file containing /* beautify preserve:start */ will not be correctly beautified.
/* beautify preserve:end */
/* beautify preserve:start */
/* beautify preserve:start */ var a = 0; var aa = 1; /* beautify preserve:end */ var b = 1;
/* beautify preserve:start */is ignored if the ignore directory has been used before.
ignore
/* beautify ignore:start */ var a = 0; var aa = 1; /* beautify ignore:end */ var b = 2; /* beautify preserve:start */ var c = 0; var cc = 1; /* beautify preserve:end */ var d = 1;
becomes this after beautification:
The text was updated successfully, but these errors were encountered:
Great report, thanks. This tells me exactly where the problem is. 👍
Sorry, something went wrong.
7360692
Your reaction time is impressive. And thanks for correcting the title. 😉
No branches or pull requests
/* beautify preserve:end */
is ignored.Thus any file containing
/* beautify preserve:start */
will not be correctly beautified./* beautify preserve:start */
is ignored if theignore
directory has been used before.becomes this after beautification:
The text was updated successfully, but these errors were encountered: