Skip to content

Commit 55f32f0

Browse files
committed
chore: changeset
1 parent a89fc81 commit 55f32f0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.changeset/shaky-experts-sit.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,23 @@
33
---
44

55
Fixed [#6799](https://github.com/biomejs/biome/issues/6799): The [`noImportCycles`](https://biomejs.dev/linter/rules/no-import-cycles/) rule now ignores type-only imports if the new `ignoreTypes` option is enabled (enabled by default).
6+
7+
> [!WARNING]
8+
> **Breaking Change**: The `noImportCycles` does not detect import cycles that includes one or more type-only imports.
9+
> To keep the old behaviour, you can turn off the `ignoreTypes` option explicitly:
10+
>
11+
> ```json
12+
> {
13+
> "linter": {
14+
> "rules": {
15+
> "nursery": {
16+
> "noImportCycles": {
17+
> "options": {
18+
> "ignoreTypes": false
19+
> }
20+
> }
21+
> }
22+
> }
23+
> }
24+
> }
25+
> ```

0 commit comments

Comments
 (0)