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>
44 lines
620 B
Plaintext
44 lines
620 B
Plaintext
# Compiled binaries
|
|
/glint
|
|
/glint.exe
|
|
dist/
|
|
bin/
|
|
|
|
# Graph output directory
|
|
glint-out/
|
|
|
|
# Go test & coverage artifacts
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
coverage.txt
|
|
|
|
# Task runner cache
|
|
.task/
|
|
|
|
# Claude Code project memory
|
|
.claude/
|
|
|
|
# Editor — JetBrains
|
|
.idea/
|
|
|
|
# Editor — VS Code (keep settings/extensions if you want to share them,
|
|
# but ignore personal/machine-specific state)
|
|
.vscode/settings.json
|
|
.vscode/launch.json
|
|
.vscode/*.code-workspace
|
|
|
|
# Editor — Vim / Neovim
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# VS Code extension build artifacts
|
|
editors/vscode/node_modules/
|
|
editors/vscode/out/
|
|
editors/vscode/*.vsix
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|