4972adb213
editors/vscode/ is a TypeScript VS Code extension that starts glint lsp as a child process and connects to it via vscode-languageclient. The documentSelector restricts LSP processing to **/.gitlab-ci.yml so other YAML files are unaffected. The glint.executablePath setting controls the binary location (default: glint on PATH). Build with task ext-compile; package as .vsix with task ext-package. Taskfile tasks added: ext-install, ext-compile, ext-package. Root .gitignore updated to exclude node_modules/, out/, and *.vsix from the extension directory. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
9 lines
212 B
Plaintext
9 lines
212 B
Plaintext
src/**
|
|
tsconfig.json
|
|
.gitignore
|
|
node_modules/**
|
|
!node_modules/vscode-languageclient/**
|
|
!node_modules/vscode-languageserver-protocol/**
|
|
!node_modules/vscode-languageserver-types/**
|
|
!node_modules/vscode-jsonrpc/**
|