-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The configuration format has changed in a backward-incompatible way, so in line with SemVer we release this as a new major version.
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changelog | ||
|
||
## [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: | ||
```js | ||
"plugin/stylelint-selector-tag-no-without-class": [ true, { | ||
"tags": ["div", "span"] | ||
} ] | ||
``` | ||
After: | ||
```js | ||
"plugin/stylelint-selector-tag-no-without-class": ["div", "span"] | ||
``` | ||
This brings the configuration in line with Stylelint's `*-blacklist` plugins. | ||
Thanks to [Aleks Hudochenkov](https://github.com/hudochenkov) for the [suggestion](https://github.com/stylelint/stylelint/pull/3201#issuecomment-371052094). | ||
|
||
## [1.0.0] - 2018-03-07 | ||
|
||
Initial public release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters