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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
If a selector doesn't have an immediate rule the block doesn't get linted e.g.
/** @define Test */ .Test {} .anything { @media (--viewport-medium) { width: 100%; } }
.anything doesn't get linted, but it does if this is the CSS:
.anything
/** @define Test */ .Test {} .anything { color: red; @media (--viewport-medium) { width: 100%; } }
The text was updated successfully, but these errors were encountered:
Related to #119 - Need to adjust that solution to support @media
@media
Sorry, something went wrong.
Merge pull request #140 from tardiva/dont-skip-media
520600a
Allow lint rule that contains @media (#134)
Fixed in #140
No branches or pull requests
If a selector doesn't have an immediate rule the block doesn't get linted e.g.
.anything
doesn't get linted, but it does if this is the CSS:The text was updated successfully, but these errors were encountered: