feat:更新ignore文件

This commit is contained in:
2026-09-11 11:09:38 +08:00
parent bb0100c76f
commit 0c5903ac45
+57 -4
View File
@@ -1,9 +1,62 @@
.env
# Python
# Python 缓存与编译文件
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# 虚拟环境
.venv/
# 虚拟环境(非常重要,防止把本地依赖包提交上去)
venv/
env/
.idea
.venv/
ENV/
# 日志文件
*.log
# 操作系统文件
.DS_Store
Thumbs.db
# pytest 测试产物
.pytest_cache/
.coverage
coverage.xml
htmlcov/
junit.xml
# mypy 类型检查缓存
.mypy_cache/
# 向量库、本地数据库、模型文件(大文件不要提交git)
*.db
*.sqlite
*.milvus
*.neo4j
*.bin
*.pth
*.ckpt
*.onnx
# 本地导出数据、临时csv/excel
data/tmp/
data/output/
*.csv
*.xlsx
*.parquet