check / check (push) Failing after 0s
files.dat was the scan format before the SQLite database; nothing has produced it since. Drop the stale references from the Makefile clean target, .gitignore and .dockerignore. make clean still removes the binary and .gitignore still covers the database files. The only remaining mention is the historical entry in TODO.md. Model: opus-4-8 (implementation); fable-5-1 (merge)
36 lines
298 B
Plaintext
36 lines
298 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.bak
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-*
|
|
|
|
# Node
|
|
node_modules/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
*.pem
|
|
*.key
|
|
|
|
# Go build artifacts
|
|
/sfdupes
|
|
*.test
|
|
*.out
|
|
*.log
|
|
|
|
# Local scan data
|
|
*.sqlite
|
|
*.sqlite-shm
|
|
*.sqlite-wal
|
|
|
|
# Agent worktrees
|
|
.claude/worktrees/
|