fix(biome): added recommendation when root has biome config file

This commit is contained in:
Folke Lemaitre 2026-03-20 16:09:12 +01:00
parent e54689ebdc
commit ad25b31e51
No known key found for this signature in database
GPG key ID: 9B52594D560070AB

View file

@ -26,6 +26,11 @@ local supported = {
}
return {
recommended = function()
return LazyVim.extras.wants({
root = { "biome.json", "biome.jsonc" },
})
end,
{
"neovim/nvim-lspconfig",