Skip to content

Add logical sizing utilities (inline-size, block-size)#19612

Merged
RobinMalfait merged 3 commits intomainfrom
claude/add-size-utilities-vm9dl
Jan 30, 2026
Merged

Add logical sizing utilities (inline-size, block-size)#19612
RobinMalfait merged 3 commits intomainfrom
claude/add-size-utilities-vm9dl

Conversation

@adamwathan
Copy link
Member

@adamwathan adamwathan commented Jan 29, 2026

Summary

Adds new utilities for CSS logical properties that provide writing-direction-aware alternatives to width and height:

  • inline-* for inline-size (logical equivalent of width)
  • min-inline-* for min-inline-size (logical equivalent of min-width)
  • max-inline-* for max-inline-size (logical equivalent of max-width)
  • block-* for block-size (logical equivalent of height)
  • min-block-* for min-block-size (logical equivalent of min-height)
  • max-block-* for max-block-size (logical equivalent of max-height)

New Utilities

inline-size utilities

Class CSS Property
inline-auto inline-size: auto
inline-full inline-size: 100%
inline-min inline-size: min-content
inline-max inline-size: max-content
inline-fit inline-size: fit-content
inline-screen inline-size: 100vw
inline-svw inline-size: 100svw
inline-lvw inline-size: 100lvw
inline-dvw inline-size: 100dvw
inline-{spacing} inline-size: {value} (e.g., inline-4, inline-px)
inline-{fraction} inline-size: {percent} (e.g., inline-1/2, inline-3/4)
inline-[{value}] inline-size: {value} (arbitrary values)

min-inline-size utilities

Class CSS Property
min-inline-auto min-inline-size: auto
min-inline-full min-inline-size: 100%
min-inline-min min-inline-size: min-content
min-inline-max min-inline-size: max-content
min-inline-fit min-inline-size: fit-content
min-inline-screen min-inline-size: 100vw
min-inline-svw min-inline-size: 100svw
min-inline-lvw min-inline-size: 100lvw
min-inline-dvw min-inline-size: 100dvw
min-inline-{spacing} min-inline-size: {value}
min-inline-[{value}] min-inline-size: {value} (arbitrary values)

max-inline-size utilities

Class CSS Property
max-inline-none max-inline-size: none
max-inline-full max-inline-size: 100%
max-inline-min max-inline-size: min-content
max-inline-max max-inline-size: max-content
max-inline-fit max-inline-size: fit-content
max-inline-screen max-inline-size: 100vw
max-inline-svw max-inline-size: 100svw
max-inline-lvw max-inline-size: 100lvw
max-inline-dvw max-inline-size: 100dvw
max-inline-{spacing} max-inline-size: {value}
max-inline-[{value}] max-inline-size: {value} (arbitrary values)

block-size utilities

Class CSS Property
block-auto block-size: auto
block-full block-size: 100%
block-min block-size: min-content
block-max block-size: max-content
block-fit block-size: fit-content
block-screen block-size: 100vh
block-lh block-size: 1lh
block-svh block-size: 100svh
block-lvh block-size: 100lvh
block-dvh block-size: 100dvh
block-{spacing} block-size: {value} (e.g., block-4, block-px)
block-{fraction} block-size: {percent} (e.g., block-1/2, block-3/4)
block-[{value}] block-size: {value} (arbitrary values)

min-block-size utilities

Class CSS Property
min-block-auto min-block-size: auto
min-block-full min-block-size: 100%
min-block-min min-block-size: min-content
min-block-max min-block-size: max-content
min-block-fit min-block-size: fit-content
min-block-screen min-block-size: 100vh
min-block-lh min-block-size: 1lh
min-block-svh min-block-size: 100svh
min-block-lvh min-block-size: 100lvh
min-block-dvh min-block-size: 100dvh
min-block-{spacing} min-block-size: {value}
min-block-[{value}] min-block-size: {value} (arbitrary values)

max-block-size utilities

Class CSS Property
max-block-none max-block-size: none
max-block-full max-block-size: 100%
max-block-min max-block-size: min-content
max-block-max max-block-size: max-content
max-block-fit max-block-size: fit-content
max-block-screen max-block-size: 100vh
max-block-lh max-block-size: 1lh
max-block-svh max-block-size: 100svh
max-block-lvh max-block-size: 100lvh
max-block-dvh max-block-size: 100dvh
max-block-{spacing} max-block-size: {value}
max-block-[{value}] max-block-size: {value} (arbitrary values)

Test plan

  • Added comprehensive unit tests for all new utilities
  • Verify utilities work correctly in RTL layouts
  • Test with vertical writing modes
@adamwathan adamwathan requested a review from a team as a code owner January 29, 2026 12:57
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Jan 29, 2026

Walkthrough

The changes introduce new utility classes for CSS inline-size and block-size properties, plus their min- and max- variants, viewport-unit options (svw, lvw, dvw, svh, lvh, dvh), convenience presets, and integration with spacing utilities. The utilities file registers many new static and spacing-based utilities. Tests were expanded with extensive coverage (555 new lines) validating utility generation, CSS functions, theme variable resolution, arbitrary values, nested variables, ordering, and edge cases.

🚥 Pre-merge checks | ✅ 2
✅ Passed checks (2 passed)
Check name Status Explanation
Title check ✅ Passed The title 'Add logical sizing utilities (inline-size, block-size)' directly and clearly describes the main change: introducing new CSS logical sizing utilities. It is concise, specific, and accurately reflects the primary objective of the changeset.
Description check ✅ Passed The pull request description is comprehensive and directly related to the changeset, providing detailed documentation of all new utilities, their CSS properties, and test coverage. It clearly explains the purpose and functionality of the additions.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

Tip

🧪 Unit Test Generation v2 is now available!

We have significantly improved our unit test generation capabilities.

To enable: Add this to your .coderabbit.yaml configuration:

reviews: finishing_touches: unit_tests: enabled: true

Try it out by using the @coderabbitai generate unit tests command on your code files or under ✨ Finishing Touches on the walkthrough!

Have feedback? Share your thoughts on our Discord thread!


Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Fix all issues with AI agents
In `@packages/tailwindcss/src/utilities.test.ts`: - Around line 3725-3740: The test block using run(...) contains a duplicated entry 'max-inline-max/foo' and is missing viewport-unit variants; remove the duplicate 'max-inline-max/foo' (only keep one) and add tests for the viewport-unit forms analogous to the existing ones, e.g. include 'max-inline-screen/...', 'max-inline-svw/...', 'max-inline-lvw/...', and 'max-inline-dvw/...' in the array passed to run() so viewport unit behavior for max-inline is covered; keep the surrounding expect(await run(...)).toEqual('') assertion and the existing items unchanged other than these additions/removal. 
Comment on lines +3725 to +3740
expect(
await run([
'max-inline',
'max-inline-auto',
'-max-inline-4',
'-max-inline-[4px]',
'max-inline-none/foo',
'max-inline-full/foo',
'max-inline-max/foo',
'max-inline-max/foo',
'max-inline-fit/foo',
'max-inline-4/foo',
'max-inline-xl/foo',
'max-inline-[4px]/foo',
]),
).toEqual('')
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Duplicate test case and missing viewport unit tests.

  1. 'max-inline-max/foo' is duplicated on lines 3733-3734.
  2. Similar to min-inline-size, this test is missing coverage for viewport units (max-inline-screen, max-inline-svw, max-inline-lvw, max-inline-dvw) if they are implemented.
🛠️ Proposed fix for duplicate
 'max-inline-full/foo', 'max-inline-max/foo', - 'max-inline-max/foo', + 'max-inline-min/foo', 'max-inline-fit/foo',
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
expect(
await run([
'max-inline',
'max-inline-auto',
'-max-inline-4',
'-max-inline-[4px]',
'max-inline-none/foo',
'max-inline-full/foo',
'max-inline-max/foo',
'max-inline-max/foo',
'max-inline-fit/foo',
'max-inline-4/foo',
'max-inline-xl/foo',
'max-inline-[4px]/foo',
]),
).toEqual('')
expect(
await run([
'max-inline',
'max-inline-auto',
'-max-inline-4',
'-max-inline-[4px]',
'max-inline-none/foo',
'max-inline-full/foo',
'max-inline-max/foo',
'max-inline-min/foo',
'max-inline-fit/foo',
'max-inline-4/foo',
'max-inline-xl/foo',
'max-inline-[4px]/foo',
]),
).toEqual('')
🤖 Prompt for AI Agents
In `@packages/tailwindcss/src/utilities.test.ts` around lines 3725 - 3740, The test block using run(...) contains a duplicated entry 'max-inline-max/foo' and is missing viewport-unit variants; remove the duplicate 'max-inline-max/foo' (only keep one) and add tests for the viewport-unit forms analogous to the existing ones, e.g. include 'max-inline-screen/...', 'max-inline-svw/...', 'max-inline-lvw/...', and 'max-inline-dvw/...' in the array passed to run() so viewport unit behavior for max-inline is covered; keep the surrounding expect(await run(...)).toEqual('') assertion and the existing items unchanged other than these additions/removal. 
claude and others added 3 commits January 30, 2026 14:38
Add new utilities for CSS logical properties: - inline-* for inline-size (like width) - min-inline-* for min-inline-size (like min-width) - max-inline-* for max-inline-size (like max-width) - block-* for block-size (like height) - min-block-* for min-block-size (like min-height) - max-block-* for max-block-size (like max-height) These utilities support the same values as their width/height counterparts, including spacing values, fractions, viewport units, and container namespace. https://claude.ai/code/session_01WhrjmutxsLP753VUtFy24S
@RobinMalfait RobinMalfait force-pushed the claude/add-size-utilities-vm9dl branch from b0ed72d to 5589db1 Compare January 30, 2026 13:41
@RobinMalfait RobinMalfait enabled auto-merge (squash) January 30, 2026 13:42
Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Fix all issues with AI agents
In `@packages/tailwindcss/src/utilities.test.ts`: - Around line 3785-3794: The test for min-inline-size is missing assertions for viewport-unit variants; update the test array in utilities.test.ts for the 'min-inline-size' case to include the viewport-unit utilities analogous to min-block-size (e.g., add 'min-inline-screen', 'min-inline-svw', 'min-inline-lvw', 'min-inline-dvw'); these utilities are implemented in utilities.ts (see the minInlineSize handling around the code paths at lines ~1101 and ~1126) so just append those four entries to the expected list in the existing test case. - Line 3861: The max-inline-size test is missing coverage for min-content and inline-axis viewport units; update the array of expected utilities (the list that currently includes 'max-inline-none', 'max-inline-full', etc.) to also include 'max-inline-min' (for min-content), 'max-inline-screen', and the inline viewport unit variants 'max-inline-svw', 'max-inline-lvw', and 'max-inline-dvw' so the max-inline-size test matches the parity of max-block-size's equivalents. 
Comment on lines +3785 to +3794
[
'min-inline-full',
'min-inline-auto',
'min-inline-min',
'min-inline-max',
'min-inline-fit',
'min-inline-4',
'min-inline-xl',
'min-inline-[4px]',
],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash # First, let's check the utilities.ts file for min-inline and min-block implementations echo "=== Checking min-inline and min-block viewport utilities in utilities.ts ===" rg -n 'min-inline.*(screen|svw|lvw|dvw)' packages/tailwindcss/src/utilities.ts echo -e "\n=== Pattern differences between min-inline and min-block implementations ===" rg -nA 10 "'min-inline-size'" packages/tailwindcss/src/utilities.ts echo -e "\n=== Pattern for min-block-size ===" rg -nA 10 "'min-block-size'" packages/tailwindcss/src/utilities.ts

Repository: tailwindlabs/tailwindcss

Length of output: 5388


🏁 Script executed:

#!/bin/bash # Check the test file at the specified lines for min-inline-size test echo "=== Test for min-inline-size around line 3775-3849 ===" sed -n '3775,3849p' packages/tailwindcss/src/utilities.test.ts echo -e "\n=== Test for min-block-size around line 4035-4038 ===" sed -n '4030,4050p' packages/tailwindcss/src/utilities.test.ts

Repository: tailwindlabs/tailwindcss

Length of output: 2041


Add missing viewport unit tests for min-inline-size.

The min-inline-size test lacks coverage for viewport units (min-inline-screen, min-inline-svw, min-inline-lvw, min-inline-dvw), while min-block-size (lines ~4035-4048) includes equivalent tests (min-block-screen, min-block-svh, min-block-lvh, min-block-dvh). These utilities are implemented in utilities.ts (lines 1101, 1126) and supported; only the test coverage is missing.

Add these viewport unit utilities to the test case for consistency with min-block-size.

🤖 Prompt for AI Agents
In `@packages/tailwindcss/src/utilities.test.ts` around lines 3785 - 3794, The test for min-inline-size is missing assertions for viewport-unit variants; update the test array in utilities.test.ts for the 'min-inline-size' case to include the viewport-unit utilities analogous to min-block-size (e.g., add 'min-inline-screen', 'min-inline-svw', 'min-inline-lvw', 'min-inline-dvw'); these utilities are implemented in utilities.ts (see the minInlineSize handling around the code paths at lines ~1101 and ~1126) so just append those four entries to the expected list in the existing test case. 
}
@tailwind utilities;
`,
['max-inline-none', 'max-inline-full', 'max-inline-max', 'max-inline-fit', 'max-inline-4', 'max-inline-xl', 'max-inline-[4px]'],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash # Check if max-inline viewport utilities are implemented rg -n 'max-inline.*(screen|svw|lvw|dvw|min)' packages/tailwindcss/src/utilities.ts echo "---" # Also check what max-inline utilities exist rg -n '"max-inline' packages/tailwindcss/src/utilities.ts | head -20

Repository: tailwindlabs/tailwindcss

Length of output: 145


🏁 Script executed:

#!/bin/bash # Check the test file at the line in question cat -n packages/tailwindcss/src/utilities.test.ts | sed -n '3850,3875p'

Repository: tailwindlabs/tailwindcss

Length of output: 839


🏁 Script executed:

#!/bin/bash # Check the max-block test to see what it includes cat -n packages/tailwindcss/src/utilities.test.ts | sed -n '4130,4145p'

Repository: tailwindlabs/tailwindcss

Length of output: 535


🏁 Script executed:

#!/bin/bash # Search for max-inline implementations in utilities.ts rg -n 'max-inline' packages/tailwindcss/src/utilities.ts | head -30

Repository: tailwindlabs/tailwindcss

Length of output: 482


🏁 Script executed:

#!/bin/bash # Search for all max-inline viewport unit variants rg -n 'max-inline-(screen|svw|lvw|dvw|min)' packages/tailwindcss/src/utilities.ts

Repository: tailwindlabs/tailwindcss

Length of output: 141


🏁 Script executed:

#!/bin/bash # Look at the full max-inline implementation section in utilities.ts cat -n packages/tailwindcss/src/utilities.ts | sed -n '1070,1145p'

Repository: tailwindlabs/tailwindcss

Length of output: 3614


🏁 Script executed:

#!/bin/bash # Check if there's any mention of svw/lvw/dvw at all (these might be width-based variants) rg -n '(svw|lvw|dvw)' packages/tailwindcss/src/utilities.ts | head -20

Repository: tailwindlabs/tailwindcss

Length of output: 235


Add missing viewport units and min-content coverage to max-inline-size test.

The max-inline-size test is missing coverage for utilities that are implemented in the codebase:

  1. max-inline-min (for min-content)
  2. max-inline-screen
  3. max-inline-svw, max-inline-lvw, max-inline-dvw (inline-axis viewport units)

The max-block-size test (lines 4130-4143) includes these equivalents (max-block-min, max-block-screen, max-block-svh/lvh/dvh), so max-inline-size should have parity.

🤖 Prompt for AI Agents
In `@packages/tailwindcss/src/utilities.test.ts` at line 3861, The max-inline-size test is missing coverage for min-content and inline-axis viewport units; update the array of expected utilities (the list that currently includes 'max-inline-none', 'max-inline-full', etc.) to also include 'max-inline-min' (for min-content), 'max-inline-screen', and the inline viewport unit variants 'max-inline-svw', 'max-inline-lvw', and 'max-inline-dvw' so the max-inline-size test matches the parity of max-block-size's equivalents. 
@RobinMalfait RobinMalfait merged commit 3d1e654 into main Jan 30, 2026
7 checks passed
@RobinMalfait RobinMalfait deleted the claude/add-size-utilities-vm9dl branch January 30, 2026 13:46
MrBns pushed a commit to MrBns/tailwindcss-official that referenced this pull request Feb 28, 2026
Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request. ### What changed? #### ✳️ eslint (9.24.0 → 9.25.1) · [Repo](https://github.com/eslint/eslint) · [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) <details> <summary>Release Notes</summary> <h4><a href="https://github.com/eslint/eslint/releases/tag/v9.25.1">9.25.1</a></h4> <blockquote><h2 dir="auto">Bug Fixes</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/cdc8e8c950ddfe1f9d462ea138ad7866da0394da"><code class="notranslate">cdc8e8c</code></a> fix: revert directive detection in no-unused-expressions (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19639">#19639</a>) (sethamus)</li> </ul> <h2 dir="auto">Chores</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/1f2b057ddcbef4340f78d1314456935054b8d93f"><code class="notranslate">1f2b057</code></a> chore: upgrade @eslint/js@9.25.1 (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19642">#19642</a>) (Milos Djermanovic)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/771317fa937a07277201f7155e9b835e6a5658f9"><code class="notranslate">771317f</code></a> chore: package.json update for @eslint/js release (Jenkins)</li> </ul></blockquote> <h4><a href="https://github.com/eslint/eslint/releases/tag/v9.25.0">9.25.0</a></h4> <blockquote><h2 dir="auto">Features</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/dcd95aafa33a95c8102834af85129f6f398fe394"><code class="notranslate">dcd95aa</code></a> feat: support TypeScript syntax in no-empty-function rule (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19551">#19551</a>) (sethamus)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/77d6d5bc4923012aee34b0a7c3d971f017d65555"><code class="notranslate">77d6d5b</code></a> feat: support TS syntax in <code class="notranslate">no-unused-expressions</code> (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19564">#19564</a>) (Sweta Tanwar)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/90228e5d57672579cf82bede29880532c2cb8ca9"><code class="notranslate">90228e5</code></a> feat: support <code class="notranslate">JSRuleDefinition</code> type (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19604">#19604</a>) (루밀LuMir)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/59ba6b73789835813ab3002c651a7217dd30a8cc"><code class="notranslate">59ba6b7</code></a> feat: add allowObjects option to no-restricted-properties (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19607">#19607</a>) (sethamus)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/db650a036baf502c7366a7da633d4cd00719394e"><code class="notranslate">db650a0</code></a> feat: support TypeScript syntax in <code class="notranslate">no-invalid-this</code> rule (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19532">#19532</a>) (Tanuj Kanti)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/9535cffe7b66abe850d90258e702279afabce7fe"><code class="notranslate">9535cff</code></a> feat: support TS syntax in <code class="notranslate">no-loop-func</code> (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19559">#19559</a>) (Nitin Kumar)</li> </ul> <h2 dir="auto">Bug Fixes</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/910bd13c4cb49001f2a9f172229360771b857585"><code class="notranslate">910bd13</code></a> fix: <code class="notranslate">nodeTypeKey</code> not being used in <code class="notranslate">NodeEventGenerator</code> (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19631">#19631</a>) (StyleShit)</li> </ul> <h2 dir="auto">Documentation</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/ca7a735dde44120111d56e36ce93ba750b3c3c86"><code class="notranslate">ca7a735</code></a> docs: update <code class="notranslate">no-undef-init</code> when not to use section (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19624">#19624</a>) (Tanuj Kanti)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/1b870c9da4b3aa28f4a6f4f62e0437b743344994"><code class="notranslate">1b870c9</code></a> docs: use <code class="notranslate">eslint-config-xo</code> in the getting started guide (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19629">#19629</a>) (Nitin Kumar)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/5d4af16ab170306862dd0c33894044e59e03d041"><code class="notranslate">5d4af16</code></a> docs: add types for multiple rule options (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19616">#19616</a>) (Tanuj Kanti)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/e8f8d57bd6c0d95f9f25db8c5b3ff72de42488b7"><code class="notranslate">e8f8d57</code></a> docs: Update README (GitHub Actions Bot)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/a40348f1f67a6c3da320682d683589f91d7e6f7b"><code class="notranslate">a40348f</code></a> docs: no-use-before-define tweaks (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19622">#19622</a>) (Kirk Waiblinger)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/0ba3ae3e5a2425560baf771c05e7c69c63a1983c"><code class="notranslate">0ba3ae3</code></a> docs: Update README (GitHub Actions Bot)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/865dbfed6cbade8a22756965be256da317801937"><code class="notranslate">865dbfe</code></a> docs: ensure "learn more" deprecation links point to useful resource (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19590">#19590</a>) (Kirk Waiblinger)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/f80b746d850021d253c01bb0eae466a701e63055"><code class="notranslate">f80b746</code></a> docs: add known limitations for no-self-compare (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19612">#19612</a>) (Nitin Kumar)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/865aed629318ca1e86e7d371fac49d7de4e7e8a8"><code class="notranslate">865aed6</code></a> docs: Update README (GitHub Actions Bot)</li> </ul> <h2 dir="auto">Chores</h2> <ul dir="auto"> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/88dc1965a4f53babec36e0f5bd450dd02467acde"><code class="notranslate">88dc196</code></a> chore: upgrade @eslint/js@9.25.0 (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19636">#19636</a>) (Milos Djermanovic)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/345288d7b270e8c122e922bfa31f219aedc4e63b"><code class="notranslate">345288d</code></a> chore: package.json update for @eslint/js release (Jenkins)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/affe6be0181422a51875a2ad40eb5152d94fc254"><code class="notranslate">affe6be</code></a> chore: upgrade trunk (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19628">#19628</a>) (sethamus)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/dd20cf274e285f09f230638184c997c44912485f"><code class="notranslate">dd20cf2</code></a> test: fix <code class="notranslate">no-loop-func</code> test with duplicate variable reports (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19610">#19610</a>) (Milos Djermanovic)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/bd05397ef68bb23a6148aeb70088d7167f201bf7"><code class="notranslate">bd05397</code></a> chore: upgrade <code class="notranslate">@eslint/*</code> dependencies (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19606">#19606</a>) (Milos Djermanovic)</li> <li> <a href="https://bounce.depfu.com/github.com/eslint/eslint/commit/22ea18b8babe4d60af7b3518b24d1ec31bf09605"><code class="notranslate">22ea18b</code></a> chore: replace invalid <code class="notranslate">int</code> type with <code class="notranslate">number</code> inside JSDocs. (<a href="https://bounce.depfu.com/github.com/eslint/eslint/pull/19597">#19597</a>) (Arya Emami)</li> </ul></blockquote> <p><em>Does any of this look wrong? <a href="https://depfu.com/packages/npm/eslint/feedback">Please let us know.</a></em></p> </details> <details> <summary>Commits</summary> <p><a href="https://github.com/eslint/eslint/compare/d49f5b7333e9a46aabdb0cff267a1d36cdbde598...3ed4b3652d9fe3dfa4017d22a6ddbd15e3c6cd7a">See the full diff on Github</a>. The new version differs by 29 commits:</p> <ul> <li><a href="https://github.com/eslint/eslint/commit/3ed4b3652d9fe3dfa4017d22a6ddbd15e3c6cd7a"><code>9.25.1</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/7a19ccd052c7d55e6e97d503f12465601021a275"><code>Build: changelog update for 9.25.1</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/1f2b057ddcbef4340f78d1314456935054b8d93f"><code>chore: upgrade @eslint/js@9.25.1 (tailwindlabs#19642)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/771317fa937a07277201f7155e9b835e6a5658f9"><code>chore: package.json update for @eslint/js release</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/cdc8e8c950ddfe1f9d462ea138ad7866da0394da"><code>fix: revert directive detection in no-unused-expressions (tailwindlabs#19639)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/e62e26761561e1d78c6466a2d74dbf946012fddc"><code>9.25.0</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/bc2c3e6acc8612f894c3400219862cd1eea5d0bd"><code>Build: changelog update for 9.25.0</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/88dc1965a4f53babec36e0f5bd450dd02467acde"><code>chore: upgrade @eslint/js@9.25.0 (tailwindlabs#19636)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/345288d7b270e8c122e922bfa31f219aedc4e63b"><code>chore: package.json update for @eslint/js release</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/910bd13c4cb49001f2a9f172229360771b857585"><code>fix: `nodeTypeKey` not being used in `NodeEventGenerator` (tailwindlabs#19631)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/ca7a735dde44120111d56e36ce93ba750b3c3c86"><code>docs: update `no-undef-init` when not to use section (tailwindlabs#19624)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/affe6be0181422a51875a2ad40eb5152d94fc254"><code>chore: upgrade trunk (tailwindlabs#19628)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/1b870c9da4b3aa28f4a6f4f62e0437b743344994"><code>docs: use `eslint-config-xo` in the getting started guide (tailwindlabs#19629)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/5d4af16ab170306862dd0c33894044e59e03d041"><code>docs: add types for multiple rule options (tailwindlabs#19616)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/e8f8d57bd6c0d95f9f25db8c5b3ff72de42488b7"><code>docs: Update README</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/a40348f1f67a6c3da320682d683589f91d7e6f7b"><code>docs: no-use-before-define tweaks (tailwindlabs#19622)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/0ba3ae3e5a2425560baf771c05e7c69c63a1983c"><code>docs: Update README</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/865dbfed6cbade8a22756965be256da317801937"><code>docs: ensure &quot;learn more&quot; deprecation links point to useful resource (tailwindlabs#19590)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/dcd95aafa33a95c8102834af85129f6f398fe394"><code>feat: support TypeScript syntax in no-empty-function rule (tailwindlabs#19551)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/77d6d5bc4923012aee34b0a7c3d971f017d65555"><code>feat: support TS syntax in `no-unused-expressions` (#19564)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/90228e5d57672579cf82bede29880532c2cb8ca9"><code>feat: support `JSRuleDefinition` type (tailwindlabs#19604)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/f80b746d850021d253c01bb0eae466a701e63055"><code>docs: add known limitations for no-self-compare (tailwindlabs#19612)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/59ba6b73789835813ab3002c651a7217dd30a8cc"><code>feat: add allowObjects option to no-restricted-properties (tailwindlabs#19607)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/db650a036baf502c7366a7da633d4cd00719394e"><code>feat: support TypeScript syntax in `no-invalid-this` rule (tailwindlabs#19532)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/dd20cf274e285f09f230638184c997c44912485f"><code>test: fix `no-loop-func` test with duplicate variable reports (tailwindlabs#19610)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/9535cffe7b66abe850d90258e702279afabce7fe"><code>feat: support TS syntax in `no-loop-func` (tailwindlabs#19559)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/bd05397ef68bb23a6148aeb70088d7167f201bf7"><code>chore: upgrade `@eslint/*` dependencies (tailwindlabs#19606)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/22ea18b8babe4d60af7b3518b24d1ec31bf09605"><code>chore: replace invalid `int` type with `number` inside JSDocs. (tailwindlabs#19597)</code></a></li> <li><a href="https://github.com/eslint/eslint/commit/865aed629318ca1e86e7d371fac49d7de4e7e8a8"><code>docs: Update README</code></a></li> </ul> </details> --- ![Depfu Status](https://depfu.com/badges/edd6acd35d74c8d41cbb540c30442adf/stats.svg) [Depfu](https://depfu.com) will automatically keep this PR conflict-free, as long as you don't add any commits to this branch yourself. You can also trigger a rebase manually by commenting with `@depfu rebase`. <details><summary>All Depfu comment commands</summary> <blockquote><dl> <dt>@​depfu rebase</dt><dd>Rebases against your default branch and redoes this update</dd> <dt>@​depfu recreate</dt><dd>Recreates this PR, overwriting any edits that you've made to it</dd> <dt>@​depfu merge</dt><dd>Merges this PR once your tests are passing and conflicts are resolved</dd> <dt>@​depfu cancel merge</dt><dd>Cancels automatic merging of this PR</dd> <dt>@​depfu close</dt><dd>Closes this PR and deletes the branch</dd> <dt>@​depfu reopen</dt><dd>Restores the branch and reopens this PR (if it's closed)</dd> <dt>@​depfu pause</dt><dd>Ignores all future updates for this dependency and closes this PR</dd> <dt>@​depfu pause [minor|major]</dt><dd>Ignores all future minor/major updates for this dependency and closes this PR</dd> <dt>@​depfu resume</dt><dd>Future versions of this dependency will create PRs again (leaves this PR as is)</dd> </dl></blockquote> </details> Co-authored-by: depfu[bot] <23717796+depfu[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

3 participants