Skip to content

Releases: ryo-manba/stylelint-plugin-use-baseline

v1.0.2

12 Oct 01:26
Compare
Choose a tag to compare

1.0.2 (2025-10-12)

Bug Fixes

v1.0.1

05 Oct 04:28
Compare
Choose a tag to compare

1.0.1 (2025-10-05)

Bug Fixes

v1.0.0

23 Sep 09:12
Compare
Choose a tag to compare

1.0.0 (2025-09-23)

⚠ BREAKING CHANGES

  • The ignoreProperties option now requires an object format instead of an array format. (#69)

Features

  • Add property-value mapping format for ignoreProperties (#69) (f2e1ac8)

🛠 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
  }
}

v0.9.3

23 Sep 07:24
Compare
Choose a tag to compare

0.9.3 (2025-09-23)

Bug Fixes

v0.9.2

21 Sep 04:40
Compare
Choose a tag to compare

0.9.2 (2025-09-21)

Bug Fixes

v0.9.1

08 Sep 14:03
Compare
Choose a tag to compare

0.9.1 (2025-09-08)

Bug Fixes

v0.9.0

03 Sep 11:52
Compare
Choose a tag to compare

0.9.0 (2025-09-03)

Features

  • warn about unnecessary @supports guards (#60) (97369ca)

v0.8.4

01 Sep 13:24
Compare
Choose a tag to compare

0.8.4 (2025-09-01)

Bug Fixes

v0.8.3

26 Aug 14:45
Compare
Choose a tag to compare

0.8.3 (2025-08-26)

Bug Fixes

v0.8.2

19 Aug 12:03
Compare
Choose a tag to compare

0.8.2 (2025-08-19)

Bug Fixes