Skip to content

Latest commit

 

History

History
executable file
·
45 lines (34 loc) · 1.45 KB

File metadata and controls

executable file
·
45 lines (34 loc) · 1.45 KB

Changelog

[2.0.3] - 2020-02-24

Added

  • This plugin now declares compatibility with Stylelint version 12 & 13.

[2.0.2] - 2019-09-23

Added

  • This plugin now declares compatibility with Stylelint version 11. Thanks to Evgeny Orekhov for opening the issue.

[2.0.1] - 2019-07-24

Added

  • This plugin now declares compatibility with Stylelint version 10. Thanks to Andrew Lisowski for the patch.

[2.0.0] - 2018-03-12

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 Aleks Hudochenkov for the suggestion.

[1.0.0] - 2018-03-07

Initial public release.