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/codeqlls.lua | 82 ++++++++++++++++++++++++---------------------- 1 file changed, 42 insertions(+), 40 deletions(-) (limited to 'lua/lspconfig/codeqlls.lua') diff --git a/lua/lspconfig/codeqlls.lua b/lua/lspconfig/codeqlls.lua index 4339733f..5a3f6e83 100644 --- a/lua/lspconfig/codeqlls.lua +++ b/lua/lspconfig/codeqlls.lua @@ -1,51 +1,53 @@ -local configs = require 'lspconfig/configs' -local util = require 'lspconfig/util' +local configs = require "lspconfig/configs" +local util = require "lspconfig/util" local server_name = "codeqlls" -local root_pattern = util.root_pattern("qlpack.yml") +local root_pattern = util.root_pattern "qlpack.yml" configs[server_name] = { - default_config = { - cmd = {"codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q"}; - filetypes = {'ql'}; - root_dir = function(fname) - return root_pattern(fname) or util.path.dirname(fname) - end; - log_level = vim.lsp.protocol.MessageType.Warning; - before_init = function(initialize_params) - initialize_params['workspaceFolders'] = {{ - name = 'workspace', - uri = initialize_params['rootUri'] - }} - end; - settings = { - search_path = vim.empty_dict() - }; - }; - docs = { - description = [[ + default_config = { + cmd = { "codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q" }, + filetypes = { "ql" }, + root_dir = function(fname) + return root_pattern(fname) or util.path.dirname(fname) + end, + log_level = vim.lsp.protocol.MessageType.Warning, + before_init = function(initialize_params) + initialize_params["workspaceFolders"] = { + { + name = "workspace", + uri = initialize_params["rootUri"], + }, + } + end, + settings = { + search_path = vim.empty_dict(), + }, + }, + docs = { + description = [[ Reference: https://help.semmle.com/codeql/codeql-cli.html Binaries: https://github.com/github/codeql-cli-binaries - ]]; - default_config = { - settings = { - search_path = [[list containing all search paths, eg: '~/codeql-home/codeql-repo']]; - }; - }; - }; - on_new_config = function(config) - if type(config.settings.search_path) == 'table' and not vim.tbl_isempty(config.settings.search_path) then - local search_path = "--search-path=" - for _, path in ipairs(config.settings.search_path) do - search_path = search_path..vim.fn.expand(path)..":" - end - config.cmd = {"codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q", search_path} - else - config.cmd = {"codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q"} - end - end; + ]], + default_config = { + settings = { + search_path = [[list containing all search paths, eg: '~/codeql-home/codeql-repo']], + }, + }, + }, + on_new_config = function(config) + if type(config.settings.search_path) == "table" and not vim.tbl_isempty(config.settings.search_path) then + local search_path = "--search-path=" + for _, path in ipairs(config.settings.search_path) do + search_path = search_path .. vim.fn.expand(path) .. ":" + end + config.cmd = { "codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q", search_path } + else + config.cmd = { "codeql", "execute", "language-server", "--check-errors", "ON_CHANGE", "-q" } + end + end, } -- cgit v1.2.3-70-g09d2