Files
violation-detector/.gitignore

44 lines
587 B
Plaintext

# 打包与构建产物
build/
dist/
dist_new/
*.spec
# 本地实验脚本与数据归档
legacy/
tmp/
# 检测缓存(断点续跑数据,含运行记录)
runs/
# 运行日志
logs/
# 检测输出(生成物)
output/
检测*/
# 密钥配置:真实 Key 不入库,用 config.example.ini 做模板(程序也会自动生成)
config.ini
# Python
__pycache__/
*.py[cod]
.venv/
.pytest_cache/
*.egg-info/
# 测试图片体积较大,不入库
tests/*.jpg
tests/*.jpeg
tests/*.png
tests/*.webp
tests/*.gif
tests/*.bmp
tests/*.tiff
# 系统杂项
Thumbs.db
.DS_Store
~$*