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
I get a false positive of H037 Duplicate attribute found on a rect tag with both x and rx attributes.
rect
x
rx
Here is a minimal reproduction :
<rect x="2" y="3" rx="1" />
[tool.djlint] require_pragma = true profile = "django" custom_blocks = "..." custom_html = "..." blank_line_after_tag = "extends, endblock" max_line_length = 120 ignore = "H021,H023,H030,H031"
The text was updated successfully, but these errors were encountered:
Thanks for catching... beginners mistake 😄 I will fix in the next release.
Sorry, something went wrong.
fix(linter): fixed false positive on H037
3b2e522
closes #679
chore(release): 1.30.1 [skip ci]
939155c
## [1.30.1](v1.30.0...v1.30.1) (2023-06-02) ### Bug Fixes * **linter:** added missing positive on H021 ([221c31f](221c31f)), closes [#678](#678) * **linter:** fixed false positive on H037 ([3b2e522](3b2e522)), closes [#679](#679)
🎉 This issue has been resolved in version 1.30.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
Successfully merging a pull request may close this issue.
System Info
Issue
I get a false positive of H037 Duplicate attribute found on a
rect
tag with bothx
andrx
attributes.How To Reproduce
Here is a minimal reproduction :
Contents of .djlintrc/pyproject.toml [tool.djlint]
The text was updated successfully, but these errors were encountered: