- *.kate-swp: Kate editor's swap files have a different extension pattern than vim's *.swp; without this, kate-swp files like docs/reviews/.2026-06-28-slice-1-claude-adversarial-assessment.md.kate-swp leak into the working tree. - .superpowers/: the superpowers companion scratches its visual-brainstorming server state (HTML mockups, server.log, server.pid, server-info) under .superpowers/brainstorm/ in the project root. The companion explicitly advises gitignoring this directory; scratch artifacts are not source.
28 lines
386 B
Plaintext
28 lines
386 B
Plaintext
# Rust
|
|
/target
|
|
**/target
|
|
**/*.rs.bk
|
|
*.pdb
|
|
|
|
# Cargo.lock is committed (this is an application workspace, not a library)
|
|
|
|
# Env / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Editor / OS
|
|
.DS_Store
|
|
*.swp
|
|
*.kate-swp
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Local worktrees (per using-git-worktrees skill; isolation, not content)
|
|
.worktrees/
|
|
worktrees/
|
|
|
|
# visual-brainstorming scratch (superpowers companion)
|
|
.superpowers/
|