Skip to content
New issue

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

[FEATURE] [Linter] Tag seems to be an orphan false positive #483

Open
3 tasks done
rafrafek opened this issue Dec 12, 2022 · 1 comment
Open
3 tasks done

[FEATURE] [Linter] Tag seems to be an orphan false positive #483

rafrafek opened this issue Dec 12, 2022 · 1 comment
Labels
🔍 linter 🚂 enhancement New feature or request

Comments

@rafrafek
Copy link

rafrafek commented Dec 12, 2022

  • I'm on the latest version of djLint
  • I've searched the issues
    there are some similar issues but I think this one is a little bit different
  • I've read the docs

System Info

  • OS: MacOS Ventura 13.0.1
  • Python 3.11.1
  • djLint Version 1.19.7
  • template language: --profile=jinja

Issue and How To Reproduce

djLint gives an error:

H025 2:0 Tag seems to be an orphan. <tr class="foo" foo=

for the template below:

{% if foo.bar %}
<tr class="foo" foo="bar" bar="foo">
{% else %}
<tr>
{% endif %}
  <td>
    Foo
  </td>
</tr>

and --check tries to do:

 {% if foo.bar %}
-<tr class="foo" foo="bar" bar="foo">
-{% else %}
-<tr>
-{% endif %}
-  <td>
-    Foo
-  </td>
-</tr>
+    <tr class="foo" foo="bar" bar="foo">
+    {% else %}
+        <tr>
+        {% endif %}
+        <td>Foo</td>
+    </tr>

which gives me incorrect indentation:

{% if foo.bar %}
    <tr class="foo" foo="bar" bar="foo">
    {% else %}
        <tr>
        {% endif %}
        <td>Foo</td>
    </tr>

But it is not an orphan since both {% if %}and {% else %}produce <tr> opening tag and there is always </tr> ending tag after {% endif %}.

Contents of .djlintrc/pyproject.toml [tool.djlint]

no config, running with --profile=jinja

@rafrafek rafrafek added 🔍 linter 🦠 bug Something isn't working labels Dec 12, 2022
@christopherpickering
Copy link
Contributor

also see #88

@christopherpickering christopherpickering added 🚂 enhancement New feature or request and removed 🦠 bug Something isn't working labels May 18, 2023
@christopherpickering christopherpickering changed the title [BUG] [Linter] Tag seems to be an orphan false positive [FEATURE] [Linter] Tag seems to be an orphan false positive May 18, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🔍 linter 🚂 enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants