Releases: Ultimaker/stylelint-config
Releases · Ultimaker/stylelint-config
v1.0.0-alpha.5
Ultimaker designs uses several weights besides 'normal', that do
not nicely correspond with named weights in CSS. To keep CSS consistent
we will enforce numeric weight notation.
// good
.foo {
font-weight: 400;
}
// good, "default" bold that Ultimaker designs use
.foo {
font-weight: 500;
}
// bad, because inconsistent
.bar {
font-weight: normal;
}
// worse, bold corresponds with a font weight of 700 that we do not have
.bar {
font-weight: bold;
}
v1.0.0-alpha.4
Change value-list-comma-space-after from "always" to "always-single-line"
Used in, for example, value lists for multiple backgrounds. Every value needs
to be on its own line.
// good because single-line
.foo {
transition: background-color 200ms ease-in-out, color 200ms ease-in-out;
}
// good because multi-line
.foo {
transition: background-color 200ms ease-in-out,
color 200ms ease-in-out,
opacity 200ms ease-in-out;
}
// bad because not all multi-line
.bar {
transition: background-color 200ms ease-in-out, color 200ms ease-in-out,
opacity 200ms ease-in-out;
//
v1.0.0-alpha.3
Fixes SCSS at-rules.
v1.0.0-alpha.2
This was meant to fix an issue but broke it worse.
v1.0.0-alpha.1
Initial alpha release to gather feedback.