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
Currently if I have this html:
<ul class="component"> <li><a href="#">Item 1 <span class="count">(37)</span></a></li> <li><a href="#">Item 2 <span class="count">(337)</span></a></li> <li><a href="#">Item 3 <span class="count">(1337)</span></a></li> </ul>
And I want to use the ignore option to ignore all I would need this configuration:
ignore
{ "name": "MyComponent", "selector": ".component", "ignore": [ "li:nth-child(1) .count", "li:nth-child(2) .count", "li:nth-child(3) .count" ] }
Whereas if this querySelector() call would have been a querySelectorAll() call, one could simply use this selector:
querySelector()
querySelectorAll()
{ "name": "MyComponent", "selector": ".component", "ignore": ["li .count"] }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently if I have this html:
And I want to use the
ignore
option to ignore all I would need this configuration:Whereas if this
querySelector()
call would have been aquerySelectorAll()
call, one could simply use this selector:The text was updated successfully, but these errors were encountered: