Releases: hudochenkov/stylelint-order
Releases · hudochenkov/stylelint-order
3.0.1
- Fixed
properties-order
not report warnings, if autofix didn't fix them. - Fixed
properties-alphabetical-order
now puts shorthands before their longhand forms even if that isn't alphabetical to avoid broken CSS. E. g.border-color
will be beforeborder-bottom-color
.
3.0.0
- Dropped Node.js 6 support. Node.js 8.7.0 or greater is now required.
- Removed stylelint@9 as a peer dependency. stylelint 10+ is now required.
- Added
emptyLineBeforeUnspecified
option forproperties-order
.
2.2.1
- Fix false negatives with
noEmptyLineBetween
in combination with theorder: "flexible"
.
2.2.0
- Added
noEmptyLineBetween
for groups inproperties-order
. - Added
stylelint@10
as a peer dependency.
2.1.0
- Added experimental support for HTML style tag and attribute.
- Added experimental support for CSS-in-JS.
2.0.0
This is a major release because this plugin requires [email protected]+
to work correctly with Less files.
- Add optional groupName property for properties-order.
- Adopted
postcss-less@3
parser changes, which is a dependency of[email protected]+
. - Fixed incorrect fixing when properties order and empty lines should be changed at the same time.
1.0.0
- Removed
stylelint@8
as a peer dependency.
0.8.1
- Add
[email protected]
as a peer dependency.
0.8.0
- Breaking change: Dropped Node.js 4 support. Use Node.js 6 or newer.
- Changed:
order
andproperties-order
will no longer autofix proactively. If there no violations would be reported with autofix disabled, then nothing will be changed with autofix enabled. Previously, there were changes toflexible
properties order (#49) or to the order of content within declaration blocks (#51).
0.7.0
- Specified
stylelint
inpeerDependencies
rather independencies
. Following stylelint's plugin guide.