-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add lwc-language-server support
- Loading branch information
1 parent
ce0e625
commit 6b264b2
Showing
1 changed file
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
local util = require 'lspconfig.util' | ||
|
||
return { | ||
default_config = { | ||
cmd = { 'lwc-language-server', '--stdio' } | ||
filetypes = { 'javascript', 'html' }, | ||
root_dir = util.root_pattern 'sfdx-project.json', | ||
init_options = { | ||
embeddedLanguages = { | ||
javascript = true, | ||
}, | ||
}, | ||
}, | ||
docs = { | ||
description = [[ | ||
https://github.com/forcedotcom/lightning-language-server/ | ||
Language server for Lightning Web Components. | ||
For manual installation, utilize the official | ||
[NPM package](https://www.npmjs.com/package/@salesforce/lwc-language-server). | ||
Then, configure `cmd` to run the Node script at the unpacked location: | ||
```lua | ||
require'lspconfig'.lwc_ls.setup { | ||
cmd = { | ||
'node', | ||
'/path/to/node_modules/@salesforce/lwc-language-server/bin/lwc-language-server.js', | ||
'--stdio' | ||
} | ||
} | ||
``` | ||
]], | ||
default_config = { | ||
root_dir = [[root_pattern('sfdx-project.json')]], | ||
}, | ||
}, | ||
} |