Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
46 commits
Select commit Hold shift + click to select a range
622dd23
fix: correct error message in useIndexOf rule
JeetuSuthar Aug 15, 2025
a422d4f
test: update snapshots for useIndexOf error message fix
JeetuSuthar Aug 15, 2025
04682e9
fix: remove trailing backticks from test snapshots
JeetuSuthar Aug 15, 2025
a50a721
chore: add changeset for useIndexOf error message fix
JeetuSuthar Aug 15, 2025
2ac0339
docs: improve changeset description following guidelines
JeetuSuthar Aug 15, 2025
9d78a13
Update slimy-zoos-search.md
siketyan Aug 16, 2025
3a44aeb
test: add test case for noExtraBooleanCast parentheses preservation
JeetuSuthar Aug 17, 2025
ba76f85
Merge branch 'main' of https://github.com/JeetuSuthar/biome
JeetuSuthar Aug 17, 2025
547425a
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 17, 2025
a14fcca
test: add test case for noExtraBooleanCast parentheses preservation
JeetuSuthar Aug 17, 2025
4e5ffe6
docs: improve changeset description following guidelines
JeetuSuthar Aug 17, 2025
57b2305
docs: update changeset to clarify test-only addition per review
JeetuSuthar Aug 17, 2025
32ba1e7
chore: remove changeset .
JeetuSuthar Aug 17, 2025
27c1c87
fix: preserve parentheses in noExtraBooleanCast rule when removing Bo…
JeetuSuthar Aug 17, 2025
3b2aebe
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 17, 2025
2196fdc
fix: add support for logical and sequence expressions in parentheses …
JeetuSuthar Aug 17, 2025
040defa
Resolve merge conflict and integrate CodeRabbit review feedback
JeetuSuthar Aug 17, 2025
600d5fa
Fix unused imports warning with allow attribute
JeetuSuthar Aug 17, 2025
0500c6b
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 17, 2025
1617b75
Fix unused imports warning with allow attribute
JeetuSuthar Aug 17, 2025
d2e9574
refactor action function and remove test files
JeetuSuthar Aug 17, 2025
4fedd9f
Fix clippy lint: use #[expect] instead of #[allow]
JeetuSuthar Aug 17, 2025
fbac80e
[autofix.ci] apply automated fixes
autofix-ci[bot] Aug 17, 2025
7a79776
test: update
JeetuSuthar Aug 17, 2025
3e8c850
Merge update
JeetuSuthar Aug 17, 2025
70066e5
fix
JeetuSuthar Aug 17, 2025
81ad304
Merge branch 'main' into fix-boolean-cast-parentheses
ematipico Aug 21, 2025
e1f57f3
Update .changeset/fix-boolean-cast-parentheses.md
JeetuSuthar Aug 21, 2025
4f07e18
Remove test files that shouldn't be in the PR
JeetuSuthar Aug 21, 2025
b1ba1d6
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 21, 2025
196f806
Merge remote changes and remove unwanted test files
JeetuSuthar Aug 21, 2025
7efefbe
Merge branch 'fix-boolean-cast-parentheses' into main
JeetuSuthar Aug 22, 2025
884388c
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 23, 2025
6410ab4
fix(noDuplicateObjectKeys): correct grammatical error in JSON diagnos…
JeetuSuthar Aug 24, 2025
4eaf846
remove unwanted changeset file
JeetuSuthar Aug 24, 2025
9ea5b5c
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 24, 2025
789a816
fix(noDuplicateObjectKeys): correct grammatical error in JSON diagnos…
JeetuSuthar Aug 24, 2025
f8f29f5
Merge branch 'main' of https://github.com/JeetuSuthar/biome
JeetuSuthar Aug 24, 2025
86421e8
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 28, 2025
0928764
fix(css): allow navigation property for view-transition (fixes #7340)
JeetuSuthar Aug 28, 2025
b412256
fix(css): allow navigation property for view-transition (fixes #7340)
JeetuSuthar Aug 29, 2025
0884878
Merge branch 'biomejs:main' into main
JeetuSuthar Aug 29, 2025
7222ec5
Merge branch 'main' of https://github.com/biomejs/biome
JeetuSuthar Aug 29, 2025
38dcfa7
Merge branch 'main' of https://github.com/JeetuSuthar/biome
JeetuSuthar Aug 29, 2025
68acf08
Delete .changeset/fix-grammar-duplicate-object-keys.md
JeetuSuthar Aug 29, 2025
1895b94
snap and changeast
JeetuSuthar Aug 29, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .changeset/allow-navigation-property.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
"biome_css_analyze": patch
---

Fixed [#7340](https://github.com/biomejs/biome/issues/7340): The linter now allows the `navigation` property for view-transition in CSS.

Previously, the linter incorrectly flagged `navigation: auto` as an unknown property. This fix adds `navigation` to the list of known CSS properties, following the [CSS View Transitions spec](https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation-descriptor).

1 change: 1 addition & 0 deletions crates/biome_css_analyze/src/keywords.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1330,6 +1330,7 @@ pub const KNOWN_PROPERTIES: &[&str] = &[
"nav-left",
"nav-right",
"nav-up",
"navigation", // https://www.w3.org/TR/css-view-transitions-2/#view-transition-navigation-descriptor
"object-fit",
"object-position",
"offset",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,3 +67,8 @@ a {
composes: classA;
color: yellow;
}

/* View Transition navigation property (should not be flagged) */
view-transition {
navigation: auto;
}
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,9 @@ a {
color: yellow;
}

/* View Transition navigation property (should not be flagged) */
view-transition {
navigation: auto;
}

```
Loading