summaryrefslogtreecommitdiff
path: root/start/lspconfig-0.1.3/lua/lspconfig/server_configurations/codeqlls.lua
blob: 9184d2f8172756fb12590bcb247233e095aaf804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
local util = require 'lspconfig.util'

return {
  default_config = {
    cmd = { 'codeql', 'execute', 'language-server', '--check-errors', 'ON_CHANGE', '-q' },
    filetypes = { 'ql' },
    root_dir = util.root_pattern 'qlpack.yml',
    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,
}