diff options
Diffstat (limited to 'lsp/biome.lua')
| -rw-r--r-- | lsp/biome.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lsp/biome.lua b/lsp/biome.lua index f7209042..88faa714 100644 --- a/lsp/biome.lua +++ b/lsp/biome.lua @@ -47,7 +47,7 @@ return { local project_root_markers = { 'package-lock.json', 'yarn.lock', 'pnpm-lock.yaml', 'bun.lockb', 'bun.lock' } local project_root = vim.fs.root(bufnr, project_root_markers) if not project_root then - return nil + return end -- We know that the buffer is using Biome if it has a config file @@ -63,7 +63,7 @@ return { stop = vim.fs.dirname(project_root), })[1] if not is_buffer_using_biome then - return nil + return end on_dir(project_root) |
