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
If the attribute has a template value and is followed by other attribute, the linter will get incorrect attribute value. For example following:
<tag attr1={val} attr2="some-other-val" attr3="">...</tag>
when run with --attributes "attr1" --templateDelimiters "{,}", will get attr2="some-other-val" as a value of attr1.
--attributes "attr1" --templateDelimiters "{,}"
attr2="some-other-val"
attr1
The reason is that the tool internally replaces template code with a space before processing a file what yields something like this:
<tag attr1= attr2="some-other-val" attr3="">...</tag>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If the attribute has a template value and is followed by other attribute, the linter will get incorrect attribute value.
For example following:
when run with
--attributes "attr1" --templateDelimiters "{,}"
, will getattr2="some-other-val"
as a value ofattr1
.The reason is that the tool internally replaces template code with a space before processing a file what yields something like this:
The text was updated successfully, but these errors were encountered: