Autofixing for rules:
value-no-vendor-prefix
property-no-vendor-prefix
selector-no-vendor-prefix
media-feature-name-no-vendor-prefix
at-rule-no-vendor-prefix
"rules": {
"value-keyword-case": null
}
hey folks, question: i am looking for something that enforces css selector namespacing/prefixing
is there a stylelint plugin provides this?
example: (ns-
is the required namespace/prefix)
/* bad */
.some-selector { ... }
.ns-some-selector some-other-selector { ... }
/* good */
.ns-some-selector { ... }
.ns-some-selector ns-some-other-selector { ... }
cheers!
My current stylelint config enables plugin/no-unsupported-browser-features
, which is quite helpful.
It does generate hundreds of
Unexpected browser feature "<some feature>" is only partially supported by IE 10,11, Edge 15
warnings.
Those browsers ARE included in my .browserslist
. For this plugin, however, I don't care.
Is it possible to exclude checks for individual rules, for specific browsers?
I.e., I just want to turn off these warnings for IE 10,11, & Edge 15