mirror of
https://github.com/AgentSeal/codeburn.git
synced 2026-08-14 11:04:44 +00:00
The node_modules/ pattern (trailing slash) matches directories only. A node_modules SYMLINK, standard in linked worktrees that share one install, is not covered, which is howdb018f7accidentally committed one and every subsequent checkout materialized a self-referencing symlink untilc642787removed it. Dropping the slash covers files, directories and symlinks.
51 lines
732 B
Text
51 lines
732 B
Text
# No trailing slash: the slash form only ignores directories, so a
|
|
# node_modules SYMLINK (common in linked worktrees) slips into git add -A.
|
|
# One did exactly that in db018f7 and had to be removed again in c642787.
|
|
node_modules
|
|
dist/
|
|
*.tgz
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editor / IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Planning artifacts (internal, not shipped)
|
|
docs/superpowers/
|
|
.claude/
|
|
/CLAUDE.md
|
|
|
|
# Config / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Debug / logs
|
|
*.log
|
|
npm-debug.log*
|
|
|
|
# Cache
|
|
.cache/
|
|
*.sqlite
|
|
|
|
# Build artifacts
|
|
*.tsbuildinfo
|
|
|
|
# Local Discord brand / promo assets not yet ready to publish
|
|
assets/discord-*.png
|
|
|
|
# Desktop app experiments
|
|
desktop/
|
|
|
|
# Mac App Store app (private)
|
|
appstore/
|
|
|
|
# WIP / not ready
|
|
src/summit.ts
|