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!