aboutsummaryrefslogtreecommitdiffstats
path: root/lua/lspconfig/configs/yamlls.lua
Commit message (Collapse)AuthorAgeFilesLines
* docs: add deprecation notice to lua/lspconfig/configs #4189Justin M. Keyes2025-11-151-0/+7
|
* refactor(yamlls): non-hacky way to enable formatting #4012Tomáš Janoušek2025-08-191-0/+2
| | | | | | | | | | | Faking capabilities isn't necessary to enable formatting support. It's a dynamically registered capability that yamlls announces whenever yaml formatting is enabled in settings, which it isn't by default. See https://github.com/redhat-developer/yaml-language-server/blob/3821411ee8c92e5b7e5ca88f84ab443ae3b2791a/src/yamlServerInit.ts#L128 https://github.com/redhat-developer/yaml-language-server/blob/3821411ee8c92e5b7e5ca88f84ab443ae3b2791a/src/languageserver/handlers/settingsHandlers.ts#L159-L174 Fixes: 63a016437e44 ("feat(yamlls): document formatting support #4003")
* fix(helm_ls,yamlls): support custom filetype for helm-ls #3893qvalentin2025-06-071-1/+1
|
* docs: use a maintained fork for `kubernetes-json-schema` in the example (#3572)Ferenc Géczi2025-01-211-1/+1
| | | | | | | | | | | | The `instrumenta/kubernetes-json-schema` repo is apparently dead: https://github.com/instrumenta/kubernetes-json-schema/issues/32#issuecomment-1021133568 And nobody has the credentials anymore to archive it: https://github.com/instrumenta/kubeval/issues/268#issuecomment-1376490498 The recommended migration from instrumenta is to https://github.com/yannh/kubeconform, see (https://github.com/instrumenta/kubernetes-json-schema/issues/32#issuecomment-1021133568) and the recommended `kubernetes-json-schema` fork is also from the same new maintainer: https://github.com/yannh/kubernetes-json-schema/ Signed-off-by: Ferenc Géczi <ferenc.gm@gmail.com>
* refactor: deprecate util.find_git_ancestordundargoc2024-12-141-3/+3
| | | | Work on https://github.com/neovim/nvim-lspconfig/issues/2079.
* refactor(docs): drop redundant default_config #3398Justin M. Keyes2024-10-241-3/+0
| | | | | | | Problem: default_config duplicated in `docs` items. Solution: delete it. docgen autogenerates this now.
* refactor: rename "server_configurations" => "configs" #3330Justin M. Keyes2024-10-011-0/+80
Problem: The name `server_configurations` is extremely verbose and irritatingly formal and dogmatic. This overlong name is a constant nuisance when reading, writing, and coding. It's also not even correct: these configurations are just as much "client" configurations as they are "server" configurations. Solution: - Rename to a shorter name. - Leave placeholder files for any old URLs that link to the old location.