Co-Authored-By: OpenAI Codex <codex@openai.com> Co-authored-by: Cursor <cursoragent@cursor.com>
54 lines
745 B
Plaintext
54 lines
745 B
Plaintext
# ripgrep / fd / 终端搜索屏蔽列表
|
|
# 目的:避免全仓 grep 扫描历史归档、缓存、构建产物和大锁文件。
|
|
|
|
# AI 历史与审计归档
|
|
docs/ai-env-history/
|
|
docs/claude-history/
|
|
docs/audit/changes/
|
|
docs/audit/audit_dashboard.md
|
|
|
|
# 临时产物与运行日志
|
|
tmp/
|
|
_DEL/
|
|
.Deleted/
|
|
export/
|
|
reports/
|
|
logs/
|
|
scripts/logs/
|
|
.playwright-mcp/
|
|
*.log
|
|
*.jsonl
|
|
|
|
# 依赖、虚拟环境、缓存和构建产物
|
|
node_modules/
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
dist/
|
|
build/
|
|
.vite/
|
|
*.egg-info/
|
|
htmlcov/
|
|
.coverage
|
|
.hypothesis/
|
|
.pytest_cache/
|
|
pytest-cache-files-*/
|
|
|
|
# 大锁文件
|
|
pnpm-lock.yaml
|
|
package-lock.json
|
|
uv.lock
|
|
|
|
# 小程序打包产物
|
|
apps/*.zip
|
|
apps/miniprogram/.font_patch_tmp/
|
|
|
|
# IDE / 系统杂项
|
|
.idea/
|
|
.vscode/
|
|
*.lnk
|
|
*.swp
|
|
*.swo
|
|
*~
|