Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
amgdev9 committed Sep 13, 2024
1 parent 7bdf88d commit 7322660
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/lspconfig/server_configurations/sourcekit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 7322660

Please sign in to comment.