From 7322660808efcc933dfb8c94a33986d9e358352f Mon Sep 17 00:00:00 2001 From: Andres Date: Fri, 13 Sep 2024 23:16:53 +0200 Subject: [PATCH] fix: lint --- lua/lspconfig/server_configurations/sourcekit.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/lspconfig/server_configurations/sourcekit.lua b/lua/lspconfig/server_configurations/sourcekit.lua index b91ef95f4e..b09e81eae3 100644 --- a/lua/lspconfig/server_configurations/sourcekit.lua +++ b/lua/lspconfig/server_configurations/sourcekit.lua @@ -12,11 +12,11 @@ return { or util.find_git_ancestor(filename) end, get_language_id = function(_, ftype) - if ftype == "objc" then - return "objective-c" + if ftype == 'objc' then + return 'objective-c' end - if ftype == "objcpp" then - return "objective-cpp" + if ftype == 'objcpp' then + return 'objective-cpp' end return ftype end,