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
prettier-ignore
From https://prettier.io/docs/en/ignore.html :
Use “prettier-ignore” comments to ignore parts of files.
So, I expected a comment like this
#!/usr/bin/env bash # prettier-ignore die() { echo "$*" 1>&2 ; exit 1; } # .. rest of script
to cause the die function to not be formatted, but, it still does get formatted.
die
The text was updated successfully, but these errors were encountered:
Doesn't even respect the following syntax
-- prettier-ignore-start SELECT * FROM ..... -- prettier-ignore-end
Sorry, something went wrong.
No branches or pull requests
From https://prettier.io/docs/en/ignore.html :
So, I expected a comment like this
to cause the
die
function to not be formatted, but, it still does get formatted.The text was updated successfully, but these errors were encountered: