77 lines
918 B
Plaintext
77 lines
918 B
Plaintext
# ===== 临时与缓存 =====
|
|
# tmp/
|
|
__pycache__/
|
|
*.pyc
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
pytest-cache-files-*/
|
|
# logs/
|
|
*.log
|
|
*.jsonl
|
|
|
|
# ===== 运行时产出 =====
|
|
#export/
|
|
#reports/
|
|
# scripts/logs/
|
|
|
|
# ===== 环境配置(保留模板) =====
|
|
# .env
|
|
# .env.local
|
|
# !.env.template
|
|
|
|
# ===== Node =====
|
|
node_modules/
|
|
|
|
# ===== Python 虚拟环境 =====
|
|
# .venv/
|
|
# venv/
|
|
# ENV/
|
|
# env/
|
|
|
|
# ===== Python 构建产物 =====
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
dist/
|
|
|
|
# ===== 测试覆盖率 =====
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# ===== infra 敏感文件 =====
|
|
infra/**/*.key
|
|
infra/**/*.pem
|
|
infra/**/*.secret
|
|
|
|
# ===== IDE =====
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.specstory/
|
|
.cursorindexingignore
|
|
|
|
# ===== Windows 杂项 =====
|
|
*.lnk
|
|
.Deleted/
|
|
|
|
# ===== Kiro 运行时状态 =====
|
|
.kiro/.audit_state.json
|
|
.kiro/.last_prompt_id.json
|