Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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: 2 additions & 6 deletions docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -1345,12 +1345,8 @@ path to such a program:

```toml
[fix.tools.biome]

# Linux and macOS
command = ["$root/node_modules/@biomejs/cli-linux-x64/biome"]

# Windows
command = ["$root\\node_modules\\@biomejs\\cli-win32-x64\\biome.exe"]
command = ["$root/node_modules/@biomejs/biome/bin/biome", "format", "--stdin-file-path=$path"]
patterns = ["glob:'**/*.ts'", "glob:'**/*.tsx'"]
```

### Execution order of tools
Expand Down
8 changes: 2 additions & 6 deletions web/docs/src/content/docs/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -1268,12 +1268,8 @@ path to such a program:

```toml
[fix.tools.biome]

# Linux and macOS
command = ["$root/node_modules/@biomejs/cli-linux-x64/biome"]

# Windows
command = ["$root\\node_modules\\@biomejs\\cli-win32-x64\\biome.exe"]
command = ["$root/node_modules/@biomejs/biome/bin/biome", "format", "--stdin-file-path=$path"]
patterns = ["glob:'**/*.ts'", "glob:'**/*.tsx'"]
```

### Execution order of tools
Expand Down
Loading