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
Add optional flag for BEM block detection on violations.
When a violation is found, the tree will be crawled for BEM block classes to help pinpoint problematic components.
Example: If a the following node was reported problematic because it didn't have a label:
<button class="Button"> <img class="Image" src="./next-arrow.png" /> </button>
We could identify the exact button in the DOM and create a list of parents with BEM base block classes.
.ArticleView > .ArticleHeader > .TopBar > .ArticlePagination > .Button > .Image
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add optional flag for BEM block detection on violations.
When a violation is found, the tree will be crawled for BEM block classes to help pinpoint problematic components.
Example:
If a the following node was reported problematic because it didn't have a label:
We could identify the exact button in the DOM and create a list of parents with BEM base block classes.
The text was updated successfully, but these errors were encountered: