Replies: 1 comment
-
# kill_biome_all.ps1
# This script repeatedly kills all biome.exe processes until none remain
do {
$processes = Get-Process -Name "biome" -ErrorAction SilentlyContinue
if ($processes) {
Write-Host "Found $($processes.Count) biome.exe process(es). Killing them..."
$processes | ForEach-Object {
Write-Host " Killing process ID: $($_.Id)"
$_.Kill()
}
Start-Sleep -Milliseconds 500 # Wait 500ms for processes to terminate
}
} while ($processes)
Write-Host "All biome.exe processes have been terminated." |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
{ "biome.lsp.bin": "/node_modules/.pnpm/@biomejs+cli-win32-x64@2.1.2/node_modules/@biomejs/cli-win32-x64/biome.exe", // ... other configs }Here is my workspace's settings.json. Every time I start the project, it doesn't find the correct bin path. It only works after I manually restart the Biome extension or comment out that bin path configuration line.
Should it be exited when it
Unable to find the Biome binary.?Highly appreciated if someone helped, salute! 🌹
Beta Was this translation helpful? Give feedback.
All reactions