From ec11b85df73cce4edb2925cb7f1d0e8db3a07b1c Mon Sep 17 00:00:00 2001 From: Michael Lingelbach Date: Sat, 3 Jul 2021 14:45:08 -0700 Subject: ci: lint and format with stylua --- lua/lspconfig/phpactor.lua | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'lua/lspconfig/phpactor.lua') diff --git a/lua/lspconfig/phpactor.lua b/lua/lspconfig/phpactor.lua index b022cf1b..f358f092 100644 --- a/lua/lspconfig/phpactor.lua +++ b/lua/lspconfig/phpactor.lua @@ -1,32 +1,32 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" local server_name = "phpactor" local bin_name = "phpactor" configs[server_name] = { default_config = { - cmd = {bin_name, "language-server"}; - filetypes = {"php"}; - root_dir = function (pattern) - local cwd = vim.loop.cwd(); - local root = util.root_pattern("composer.json", ".git")(pattern); + cmd = { bin_name, "language-server" }, + filetypes = { "php" }, + root_dir = function(pattern) + local cwd = vim.loop.cwd() + local root = util.root_pattern("composer.json", ".git")(pattern) -- prefer cwd if root is a descendant - return util.path.is_descendant(cwd, root) and cwd or root; - end; - }; + return util.path.is_descendant(cwd, root) and cwd or root + end, + }, docs = { description = [[ https://github.com/phpactor/phpactor Installation: https://phpactor.readthedocs.io/en/master/usage/standalone.html#global-installation -]]; +]], default_config = { - cmd = {"phpactor", "language-server"}; - root_dir = [[root_pattern("composer.json", ".git")]]; - }; - }; + cmd = { "phpactor", "language-server" }, + root_dir = [[root_pattern("composer.json", ".git")]], + }, + }, } -- vim:et ts=2 sw=2 -- cgit v1.2.3-70-g09d2