Skip to content

v1.0.2

Latest

Choose a tag to compare

@github-actions github-actions released this 28 May 19:58
· 7 commits to main since this release
Immutable release. Only release title and notes can be modified.

[1.0.2] - 2026-05-28

✨ Features

  • a37b193 — ✨ [feat] Add new grid-related linting rules

  • Introduce no-ineffective-container-properties to prevent ineffective grid container declarations when display values are not grid-capable.

  • Implement no-invalid-repeat-count to disallow invalid fixed repeat counts in CSS Grid track templates.

  • Add no-invalid-span to prevent non-positive span counts in grid placement declarations.

  • Create no-reversed-placement-lines to disallow reversed or zero-width numeric CSS Grid placement line ranges.

  • Introduce no-zero-grid-lines to prevent the use of grid line 0 in placement declarations.

  • Add prefer-minmax-zero-fr to encourage wrapping bare flexible column tracks in minmax(0, <flex>).

  • Implement require-explicit-tracks-with-areas to enforce explicit track sizing alongside named area templates.
    🧪 [test] Enhance grid rules test coverage

  • Add tests for the new grid linting rules to ensure proper functionality and reporting of invalid configurations.

  • Validate correct warnings for invalid repeat counts, non-positive spans, reversed placement lines, and ineffective container properties.

🧹 Chores