check / check (push) Failing after 0s
files.dat was the pre-database on-disk scan format; nothing has produced it since the persistent SQLite database landed. Drop the stale references from Makefile clean, .gitignore and .dockerignore. make clean still removes the binary, and .gitignore still covers the actual database artifacts (*.sqlite, *.sqlite-shm, *.sqlite-wal). The sole remaining files.dat mention is the historical entry in TODO.md. Model: opus-4-8
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/
|