feat(biome): enable biome lsp for linting

This commit is contained in:
Folke Lemaitre 2026-03-20 12:12:45 +01:00
parent 50159fe344
commit b2830cfcc5
No known key found for this signature in database
GPG key ID: 9B52594D560070AB

View file

@ -10,6 +10,7 @@ end
local supported = {
"astro",
"css",
"scss",
"graphql",
-- "html",
"javascript",
@ -30,6 +31,16 @@ return {
opts = { ensure_installed = { "biome" } },
},
{
"neovim/nvim-lspconfig",
opts = {
servers = {
---@type lspconfig.settings.biome
biome = {},
},
},
},
{
"stevearc/conform.nvim",
optional = true,