aboutsummaryrefslogtreecommitdiffstats
path: root/.github/ci
diff options
context:
space:
mode:
authorHyBer <59885141+BBboy01@users.noreply.github.com>2026-03-26 17:54:19 +0800
committerGitHub <noreply@github.com>2026-03-26 05:54:19 -0400
commit0624a7434ccb1fa27802b80e4a032ff71deea700 (patch)
treeeb6e1f621f125c69159805ed5d404207a9345ab9 /.github/ci
parentdocs: update configs.md (diff)
downloadnvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar.gz
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar.bz2
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar.lz
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar.xz
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.tar.zst
nvim-lspconfig-0624a7434ccb1fa27802b80e4a032ff71deea700.zip
feat(stylelint)!: migrate to stylelint-language-server #4351
stylelint now has an official LS: [@stylelint/language-server](https://github.com/stylelint/vscode-stylelint/tree/main/packages/language-server)
Diffstat (limited to '.github/ci')
-rw-r--r--.github/ci/lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/ci/lint.sh b/.github/ci/lint.sh
index 8efeac73..8e4403ec 100644
--- a/.github/ci/lint.sh
+++ b/.github/ci/lint.sh
@@ -53,7 +53,7 @@ _check_lsp_cmd_prefix() {
# Enforce client:exec_cmd().
_check_exec_cmd() {
- local exclude='eslint\|pyright\|basedpyright'
+ local exclude='eslint\|stylelint\|pyright\|basedpyright'
if git grep -P 'workspace.executeCommand' -- 'lsp/*.lua' | grep -v "$exclude" ; then
_fail 'Use client:exec_cmd() instead of calling request("workspace/executeCommand") directly. Example: lsp/pyright.lua'
fi