This is regarding stylelint
.
I am looking for a solution to blacklist use of specific selectors like
html[dir="rtl"]
{
//some css
}
There is a rule to block specific property Link.
But there is no rule to block use of particular selector.
Is there any way I can tweak previous available rule to blacklist above selector??
Thanks