aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/rome.lua
blob: 9fb287293b445901d96e167cbe71e2eac29525f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---@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
-- ```
return {
  cmd = { 'rome', 'lsp-proxy' },
  filetypes = {
    'javascript',
    'javascriptreact',
    'json',
    'typescript',
    'typescript.tsx',
    'typescriptreact',
  },
  root_markers = { 'package.json', 'node_modules', '.git' },
}