-
Notifications
You must be signed in to change notification settings - Fork 128
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
SpaceInHtmlTag customisation #125
Comments
I would also like to customise the exclusions from this as an empty alt tag: |
The issue is the space after the last attribute. The following gets flagged: <span
class="..."
id="..."
>
Text ...
</span> But this passes <span
class="..."
id="...">
Text ...
</span> |
I would like to see additional characters supported. Some js libraries like alpine use special characters like |
I also had to disable this rule due to use of Alpine's |
When the
SpaceInHtmlTag
rule is enabled, the following code is flagged:I realise that I could just disable this rule but then the following code is accepted:
Which is undesirable.
Is it possible to customise the
SpaceInHtmlTag
rule such that scenario 1 is accepted but scenario 2 is not? Or do we have to make a choice on what we want to accept?The text was updated successfully, but these errors were encountered: