Releases: Moxio/stylelint-selector-tag-no-without-class
Releases · Moxio/stylelint-selector-tag-no-without-class
V3.0.1
v3.0.0
2.0.6
v2.0.5
2.0.4
2.0.2
This plugin now declares compatibility with Stylelint version 11. Thanks to @EvgenyOrekhov for opening the issue.
2.0.1
The peerDependencies
of this package have been relaxed to declare compatibility with stylelint version 10. Thanks to @hipstersmoothie for the patch.
2.0.0
Changed
-
The primary configuration option is now the list of tags that should not
occur without a class qualifier. The secondary configuration option has
been dropped. The primary configuration option can also be a string (if
the rule applies to a single tag), and also supports regular expressions.Before:
"plugin/stylelint-selector-tag-no-without-class": [ true, { "tags": ["div", "span"] } ]
After:
"plugin/stylelint-selector-tag-no-without-class": ["div", "span"]
This brings the configuration in line with Stylelint's
*-blacklist
plugins.
Thanks to @hudochenkov for the suggestion.