Releases: g-plane/malva
Releases · g-plane/malva
v0.5.1
Chore
- Added descriptions to configuration JSON schema.
v0.5.0
v0.4.0
Features
- Added
hexColorLength
option. - Added
keyframeSelectorNotation
option. - Added support for ignoring formatting specific statement with
malva-ignore
comment. (This can be customized by theignoreCommentDirective
option.)
v0.3.1
Fixes
- Fixed leading combinator in nested qualified rule.
v0.3.0
Features
- Optimized formatting
grid
andgrid-template-*
properties.
v0.2.0
Features
- Added
declarationOrder
option for sorting declarations (a.k.a. properties) in qualified rule. For example, given with the following input:
div {
height: 0;
width: 0;
display: flex;
}
It can format into:
div {
display: flex;
width: 0;
height: 0;
}
For detail, please refer to documentation.
- Added
singleLineBlockThreshold
option. This option can let you put a block into a single line if possible. This is especially useful for increasing readability when writing atomic CSS. For example:
.border-0 { border-width: 0px; }
.border-1 { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-3 { border-width: 3px; }
.border-4 { border-width: 4px; }
.border-5 { border-width: 5px; }
For detail, please refer to documentation.
v0.1.5
This release didn't change anything for end users.
v0.1.4
v0.1.4
v0.1.3
v0.1.3
v0.1.2
Fixes
- Fixed config key
operatorLinebreak
in dprint config.