Skip to content

Commit

Permalink
fix(lwc-language-server): added missing , to end of cmd line
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWizardLizard committed Jan 6, 2024
1 parent 6b264b2 commit 78801a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lua/lspconfig/server_configurations/lwc_ls.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ local util = require 'lspconfig.util'

return {
default_config = {
cmd = { 'lwc-language-server', '--stdio' }
cmd = { 'lwc-language-server', '--stdio' },
filetypes = { 'javascript', 'html' },
root_dir = util.root_pattern 'sfdx-project.json',
init_options = {
Expand Down

0 comments on commit 78801a2

Please sign in to comment.