Skip to content

Commit 39eb545

Browse files
authored
fix(biome_configuration): revert URL brackets (#8766)
1 parent 3a15c29 commit 39eb545

4 files changed

Lines changed: 855 additions & 850 deletions

File tree

.changeset/shaggy-snakes-study.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@biomejs/biome": patch
3+
---
4+
5+
Fixed [#8761](https://github.com/biomejs/biome/issues/8761): Reverted wrapping the URL of rule descriptions with `<>`, causing broken URLs in VSCode.

crates/biome_configuration_macros/src/group_struct.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ pub fn generate_group_struct(
7070

7171
if !docs.is_empty() {
7272
let docs = docs.trim_end_matches('.');
73-
format!("{}.\nSee <{}>", docs, url)
73+
format!("{}.\nSee {}", docs, url)
7474
} else {
75-
format!("See <{}>", url)
75+
format!("See {}", url)
7676
}
7777
};
7878

0 commit comments

Comments
 (0)