diff options
Diffstat (limited to 'lua/lspconfig/rome.lua')
| -rw-r--r-- | lua/lspconfig/rome.lua | 38 |
1 files changed, 18 insertions, 20 deletions
diff --git a/lua/lspconfig/rome.lua b/lua/lspconfig/rome.lua index b4a319e0..b8174d6a 100644 --- a/lua/lspconfig/rome.lua +++ b/lua/lspconfig/rome.lua @@ -1,26 +1,25 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" configs.rome = { default_config = { - cmd = {'rome', 'lsp'}, + cmd = { "rome", "lsp" }, filetypes = { - 'javascript', - 'javascriptreact', - 'json', - 'typescript', - 'typescript.tsx', - 'typescriptreact' + "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) or - util.path.dirname(fname) - end + return util.find_package_json_ancestor(fname) or util.find_node_modules_ancestor(fname) or util.find_git_ancestor( + fname + ) or util.path.dirname(fname) + end, }, docs = { - description = [[ + description = [[ https://rome.tools Language server for the Rome Frontend Toolchain. @@ -29,9 +28,8 @@ Language server for the Rome Frontend Toolchain. npm install [-g] rome ``` ]], - default_config = { - root_dir = [[root_pattern('package.json', 'node_modules', '.git') or dirname]] - } - } + default_config = { + root_dir = [[root_pattern('package.json', 'node_modules', '.git') or dirname]], + }, + }, } - |
