From 04000f849228d0f3f9a0f5261639370fb8b0b9f0 Mon Sep 17 00:00:00 2001 From: SaNch0sE <22202508+SaNch0sE@users.noreply.github.com> Date: Thu, 25 Jul 2024 21:02:24 +0300 Subject: [PATCH] fix(recipes.md): disable vtsls format for eslint Due to change of default LSP for typescript to `vtsls`, we need to disable it's formatting too --- docs/configuration/recipes.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/configuration/recipes.md b/docs/configuration/recipes.md index 80cceca794..e6849d9fd5 100644 --- a/docs/configuration/recipes.md +++ b/docs/configuration/recipes.md @@ -152,6 +152,8 @@ Important: make sure not to add prettier to null-ls, otherwise this won't work! client.server_capabilities.documentFormattingProvider = true elseif client.name == "tsserver" then client.server_capabilities.documentFormattingProvider = false + elseif client.name == "vtsls" then + client.server_capabilities.documentFormattingProvider = false end end) end,