88f20165db
BREAKING CHANGES: - `glint <file>` removed; use `glint check <file>` - `--graph <mode>` removed; use `glint graph [mode]` - `--graph-out` renamed to `--out` on `glint graph` feat(cli): ruff-style subcommands — `glint check` and `glint graph [mode]` feat(graph): `glint graph tree` — terminal job tree with context annotations feat(graph): context flags (--branch/--tag/--source/--var) on `glint graph` feat(resolver): recursive local include resolution from disk fix(resolver): extends unknown base emits warning instead of fatal error fix(model): script/before_script/after_script accept block scalar string form test(linter): Samba project CI fixtures as integration tests chore(build): fix .gitignore to not exclude cmd/glint/ directory docs: update CHANGELOG, README, ROADMAP for v0.2.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
39 lines
512 B
Plaintext
39 lines
512 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
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|