Files
glint/.gitignore
T
k3nny 4972adb213
ci / vet, staticcheck, test, build (push) Failing after 2m27s
release / Build and publish release (push) Successful in 1m19s
feat(cli): add VS Code extension wrapping glint lsp
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>
2026-06-26 21:26:23 +02:00

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