mirror of
https://github.com/neovim/nvim-lspconfig.git
synced 2026-05-05 08:36:09 +02:00
Problem: `checkhealth vim.lsp` reports the following warnings: - ⚠️ WARNING Unknown filetype 'javascript.jsx'. - ⚠️ WARNING Unknown filetype 'typescript.tsx'. Solution: Remove them.
25 lines
474 B
Lua
25 lines
474 B
Lua
---@brief
|
|
---
|
|
--- https://rome.tools
|
|
---
|
|
--- Language server for the Rome Frontend Toolchain.
|
|
---
|
|
--- (Unmaintained, use [Biome](https://biomejs.dev/blog/annoucing-biome) instead.)
|
|
---
|
|
--- ```sh
|
|
--- npm install [-g] rome
|
|
--- ```
|
|
|
|
---@type vim.lsp.Config
|
|
return {
|
|
cmd = { 'rome', 'lsp-proxy' },
|
|
filetypes = {
|
|
'javascript',
|
|
'javascriptreact',
|
|
'json',
|
|
'typescript',
|
|
'typescriptreact',
|
|
},
|
|
root_markers = { 'package.json', 'node_modules', '.git' },
|
|
}
|