We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83b6db7 commit d6884d7Copy full SHA for d6884d7
.changeset/blue-parts-lie.md
@@ -0,0 +1,23 @@
1
+---
2
+"@biomejs/biome": patch
3
4
+
5
+Fix --stdin-file-path with nested configuration
6
7
+Previously, --stdin-file-path was not using nested configuration.
8
+For example, with the following structure:
9
10
11
+```
12
+├── biome.json
13
+└── subdirectory
14
+ ├── biome.json
15
+ ├── lib.js
16
+ └── lib.ts
17
18
19
+A command like `biome format --stdin-file-path=subdirectory/lib.ts <
20
+subdirectory/lib.ts` would fail to use configuration from
21
+`subdirectory/biome.json`, and the output of stdin mode formatting differed
22
+from the result of `biome format .`, or failed to run at all. Now it is
23
+consistent.
0 commit comments