Files
Neo-ZQYY/.gitignore
Neo 80bda9b991 chore(audit): 2026-04-20 历史批次预审 + 文档同步 + .gitignore 修正
- 新增 docs/audit/changes/2026-04-20__historical-batch-pre-audit.md
  157 文件分批盘点审计(7 条主线 + 10 项高/中风险 + 2 份迁移 SQL DDL 清单)
- 补追 docs/audit/changes/2026-04-15__meituan-settle-core-sync.md
  原审计产物因 .gitignore 屏蔽长期未入仓,本次一并追回
- 刷新 docs/audit/audit_dashboard.md(33 条审计记录)
- .gitignore 白名单放行 docs/audit/changes/*.md 与 audit_dashboard.md
  同时屏蔽 changes/changes/ 嵌套误产物目录
- 新增 docs/specs/audit-gap-recovery/tasks.md
  扫描嵌套目录发现 96 份 D 类孤本(从未入过 git history),
  生成独立 PRD 供单开任务清理与补追
- 文档同步(高风险项):
  - apps/backend/docs/API-REFERENCE.md (+69)
  - apps/miniprogram/README.md (+50)
  - apps/etl/connectors/feiqiu/docs/architecture/data_flow.md (+52/-2)
  - apps/etl/connectors/feiqiu/docs/architecture/system_overview.md (+5/-3)

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-20 06:32:58 +08:00

97 lines
1.3 KiB
Plaintext

# ===== 临时与缓存 =====
# tmp/
__pycache__/
*.pyc
*.py[cod]
*$py.class
*.so
.hypothesis/
.pytest_cache/
pytest-cache-files-*/
logs/
*.log
*.jsonl
# ===== 审计文件 =====
docs/audit/*
# 白名单:允许追踪审计变更记录与仪表盘
!docs/audit/changes/
!docs/audit/changes/*.md
!docs/audit/audit_dashboard.md
# 嵌套误产物目录暂存本地,后续按 docs/specs/audit-gap-recovery/tasks.md 处理
docs/audit/changes/changes/
# ===== 运行时产出 =====
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/
# ===== 测试 =====
tests/
# ===== infra 敏感文件 =====
infra/**/*.key
infra/**/*.pem
infra/**/*.secret
# ===== IDE =====
.idea/
.vscode/
.vite/
*.swp
*.swo
*~
# ===== Claude Code 本地配置 =====
.claude/settings.local.json
# ===== Windows 杂项 =====
*.lnk
.Deleted/
# ===== 归档目录(用户定期手动清理) =====
_DEL/
# ===== 运维脚本运行时状态 =====
scripts/ops/.monitor_token
# ===== 小程序打包产物 =====
apps/*.zip