fscan/.gitignore
ZacharyZcR 94ead622e2 cleanup: 清理项目中的额外产物和临时文件
清理内容:
- 删除fscan-lite目录下的编译产物(.o文件)
- 移除临时测试脚本pull_images.sh
- 更新.gitignore,添加*.o和*.a编译对象文件规则

代码仓库整洁原则:
- 版本控制不应包含编译产物
- 临时脚本和测试文件不应提交
- .gitignore应覆盖所有可能的构建产物

影响:
- 减少仓库大小,避免无意义的文件变更
- 防止编译产物冲突和平台相关问题
- 保持代码仓库的专业性和整洁性
2025-09-02 01:15:08 +00:00

82 lines
954 B
Plaintext

result.txt
main
.idea
fscan.exe
fscan
makefile
fscanapi.csv
# IDE files / IDE 文件
.vscode/
.cursor/
.cursorrules
.claude/
# Local development files / 本地开发文件
*.local
*.tmp
*.temp
.env
.env.local
.env.development
.env.test
.env.production
# OS files / 操作系统文件
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
desktop.ini
# Logs / 日志文件
*.log
logs/
log/
# Test coverage / 测试覆盖率
coverage.txt
coverage.html
*.cover
# Build artifacts / 构建产物
dist/
build/
bin/
*.exe
*.dll
*.so
*.dylib
# Go specific / Go 相关
vendor/
*.test
*.prof
*.mem
*.cpu
__debug_bin*
# Local development tools / 本地开发工具
.air.toml
air_tmp/
# Todo files / Todo文件
Todo列表.md
*todo*.md
*TODO*.md
# Claude documentation / Claude文档
.claude_docs/
# Cleaner plugin artifacts / 清理插件产物
cleanup.bat
cleanup.sh
cleanup_script_*
# Compilation objects / 编译对象文件
*.o
*.a