1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-09 15:00:04 +08:00
SpaceVim/bundle/nvim-lspconfig-latest/lua/lspconfig/server_configurations/snyk_ls.lua
2024-05-21 12:31:14 +08:00

38 lines
796 B
Lua

local util = require 'lspconfig.util'
return {
default_config = {
cmd = { 'snyk-ls' },
root_dir = util.root_pattern('.git', '.snyk'),
filetypes = {
'go',
'gomod',
'javascript',
'typescript',
'json',
'python',
'requirements',
'helm',
'yaml',
'terraform',
'terraform-vars',
},
single_file_support = true,
settings = {},
init_options = {
activateSnykCode = 'true',
},
},
docs = {
description = [[
https://github.com/snyk/snyk-ls
LSP for Snyk Open Source, Snyk Infrastructure as Code, and Snyk Code.
]],
default_config = {
root_dir = [[root_pattern(".git", ".snyk")]],
init_options = 'Configuration from https://github.com/snyk/snyk-ls#configuration-1',
},
},
}