diff options
| author | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-19 06:10:28 +0000 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2024-04-19 06:10:28 +0000 |
| commit | 7342fa3c99b9c5d4bb97d64a076b95d50fefa82f (patch) | |
| tree | 6c6b286fbdfeea9d538e2d9d81ad624bb3acf855 | |
| parent | fix(snyk_ls): update root_dir & supported filetypes (#3112) (diff) | |
| download | nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar.gz nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar.bz2 nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar.lz nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar.xz nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.tar.zst nvim-lspconfig-7342fa3c99b9c5d4bb97d64a076b95d50fefa82f.zip | |
docs: update server_configurations.md
skip-checks: true
| -rw-r--r-- | doc/server_configurations.md | 6 | ||||
| -rw-r--r-- | doc/server_configurations.txt | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/doc/server_configurations.md b/doc/server_configurations.md index f86d58ef..73f5596d 100644 --- a/doc/server_configurations.md +++ b/doc/server_configurations.md @@ -10334,13 +10334,17 @@ require'lspconfig'.snyk_ls.setup{} ```lua { "snyk-ls" } ``` + - `filetypes` : + ```lua + { "go", "gomod", "javascript", "typescript", "json", "python", "requirements", "helm", "yaml" } + ``` - `init_options` : ```lua Configuration from https://github.com/snyk/snyk-ls#configuration-1 ``` - `root_dir` : ```lua - root_pattern(".git") + root_pattern(".git", ".snyk") ``` - `settings` : ```lua diff --git a/doc/server_configurations.txt b/doc/server_configurations.txt index f86d58ef..73f5596d 100644 --- a/doc/server_configurations.txt +++ b/doc/server_configurations.txt @@ -10334,13 +10334,17 @@ require'lspconfig'.snyk_ls.setup{} ```lua { "snyk-ls" } ``` + - `filetypes` : + ```lua + { "go", "gomod", "javascript", "typescript", "json", "python", "requirements", "helm", "yaml" } + ``` - `init_options` : ```lua Configuration from https://github.com/snyk/snyk-ls#configuration-1 ``` - `root_dir` : ```lua - root_pattern(".git") + root_pattern(".git", ".snyk") ``` - `settings` : ```lua |
