Loading...
Loading...
Biome: The file /node_modules/... is being linted despite being in .gitignoreBiome is designed to be zero-config, but it doesn't always automatically 'spy' on your .gitignore file unless explicitly told to. This can cause the formatter to crash or slow down while trying to process hundreds of files in your dependency folders.
Update your biome.json to explicitly enable git as the version control system.
{
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
}
}