diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2025-04-26 14:46:16 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-26 14:46:16 -0700 |
| commit | b8755e3ac9c065fc0934485b251472cbda22a413 (patch) | |
| tree | 5c6011e2be0a5383601ba3f3ab06ce0e59d7f437 /.github | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar.gz nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar.bz2 nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar.lz nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar.xz nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.tar.zst nvim-lspconfig-b8755e3ac9c065fc0934485b251472cbda22a413.zip | |
ci(lint): migrate from single_file_support #3789
Diffstat (limited to '.github')
| -rw-r--r-- | .github/ci/lint.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/ci/lint.sh b/.github/ci/lint.sh index 7af3eb36..49f6a9a8 100644 --- a/.github/ci/lint.sh +++ b/.github/ci/lint.sh @@ -67,6 +67,9 @@ _check_deprecated_in_nvim_0_11() { if git grep -P 'validate_bufnr' -- 'lsp/*.lua' ; then _fail 'Do not use util.validate_bufnr(). Nvim stdlib already treats bufnr=0 as "current buffer".' fi + if git grep -P 'single_file_support' -- 'lsp/*.lua' ; then + _fail 'vim.lsp.config assumes "single-file support" by default. If the LS does not support that, set workspace_required=true.' + fi } _check_deprecated_utils() { |
