Releases: ryo-manba/stylelint-plugin-use-baseline
Releases · ryo-manba/stylelint-plugin-use-baseline
v1.0.2
v1.0.1
v1.0.0
1.0.0 (2025-09-23)
⚠ BREAKING CHANGES
- The
ignoreProperties
option now requires an object format instead of an array format. (#69)
Features
🛠 Migration Guide
If you previously configured ignoreProperties
as an array:
{
"plugin/use-baseline": [
true,
{
- "ignoreProperties": ["user-select", "animation-*"]
}
]
}
You now need to write:
{
"plugin/use-baseline": [
true,
{
+ "ignoreProperties": {
+ "user-select": [],
+ "animation-*": []
+ }
}
]
}
Example
{
"ignoreProperties": {
"accent-color": [], // Skip property check only
"user-select": ["none", "auto"], // Ignore specific values
"/^animation-/": [], // Regex for property names
"clip-path": ["/^fill-/"], // Regex for values
"backdrop-filter": ["/^.+$/"] // Ignore all values
}
}