2022-03-20 10:22:32 +08:00
|
|
|
local util = require 'lspconfig.util'
|
2021-10-05 15:13:10 +08:00
|
|
|
|
2022-03-20 10:22:32 +08:00
|
|
|
return {
|
2021-10-05 15:13:10 +08:00
|
|
|
default_config = {
|
2024-06-13 08:44:55 +08:00
|
|
|
cmd = { 'rome', 'lsp' },
|
2021-10-05 15:13:10 +08:00
|
|
|
filetypes = {
|
|
|
|
'javascript',
|
|
|
|
'javascriptreact',
|
|
|
|
'json',
|
|
|
|
'typescript',
|
|
|
|
'typescript.tsx',
|
|
|
|
'typescriptreact',
|
|
|
|
},
|
|
|
|
root_dir = function(fname)
|
|
|
|
return util.find_package_json_ancestor(fname)
|
|
|
|
or util.find_node_modules_ancestor(fname)
|
|
|
|
or util.find_git_ancestor(fname)
|
|
|
|
end,
|
2022-03-20 10:22:32 +08:00
|
|
|
single_file_support = true,
|
2021-10-05 15:13:10 +08:00
|
|
|
},
|
|
|
|
docs = {
|
|
|
|
description = [[
|
|
|
|
https://rome.tools
|
|
|
|
|
|
|
|
Language server for the Rome Frontend Toolchain.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
npm install [-g] rome
|
|
|
|
```
|
|
|
|
]],
|
|
|
|
default_config = {
|
2024-06-13 08:44:55 +08:00
|
|
|
root_dir = [[root_pattern('package.json', 'node_modules', '.git') or dirname]],
|
2021-10-05 15:13:10 +08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|