diff --git a/.config/nvim/lua/plugins/extras/linting/biome.lua b/.config/nvim/lua/plugins/extras/linting/biome.lua index aa0d82f5..72af89c5 100644 --- a/.config/nvim/lua/plugins/extras/linting/biome.lua +++ b/.config/nvim/lua/plugins/extras/linting/biome.lua @@ -10,10 +10,7 @@ return { "neovim/nvim-lspconfig", opts = { servers = { - biome = { - root_dir = require("lspconfig").util.root_pattern("biome.json"), - single_file_support = false, - }, + biome = {}, }, }, }, @@ -40,7 +37,6 @@ return { }) opts.formatters = { - cwd = require("conform.util").root_file({ "biome.json" }), biome = { condition = function(self, ctx) return vim.fs.find({ "biome.json" }, { path = ctx.filename, upward = true })[1]