1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
---@brief
--- https://biomejs.dev
---
--- Toolchain of the web. [Successor of Rome](https://biomejs.dev/blog/annoucing-biome).
---
--- ```sh
--- npm install [-g] @biomejs/biome
--- ```
local util = require 'lspconfig.util'
return {
cmd = { 'biome', 'lsp-proxy' },
filetypes = {
'astro',
'css',
'graphql',
'javascript',
'javascriptreact',
'json',
'jsonc',
'svelte',
'typescript',
'typescript.tsx',
'typescriptreact',
'vue',
},
workspace_required = true,
root_dir = function(bufnr, on_dir)
local fname = vim.api.nvim_buf_get_name(bufnr)
local root_files = { 'biome.json', 'biome.jsonc' }
root_files = util.insert_package_json(root_files, 'biome', fname)
local root_dir = vim.fs.dirname(vim.fs.find(root_files, { path = fname, upward = true })[1])
on_dir(root_dir)
end,
}
|