Vendor LLMmap / llm-verify / llm-fingerprint-detector under bash/fingerprint/tools so the three fingerprint benchmarks run with only /data1/eval mounted (no /data1/xii dependency): - run.py DEFAULT_TOOLS_ROOT prefers builtin tools/, falls back to /data1/xii - exclude .git / node_modules / template backups - detector dist/ (pre-built) retained; node_modules not needed at runtime
66 lines
795 B
Plaintext
66 lines
795 B
Plaintext
# ─── Python ───
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
*.whl
|
|
|
|
# ─── Virtual Environments ───
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
env/
|
|
|
|
# ─── IDE ───
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/tasks.json
|
|
!.vscode/launch.json
|
|
!.vscode/extensions.json
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# ─── Testing & Coverage ───
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# ─── Environment & Secrets ───
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.pem
|
|
*.key
|
|
|
|
# ─── Database ───
|
|
*.db
|
|
*.db-journal
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# ─── OS ───
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
ehthumbs.db
|
|
|
|
# ─── Logs ───
|
|
*.log
|
|
logs/
|
|
|
|
# ─── Alembic ───
|
|
alembic/versions/__pycache__/
|
|
|
|
# ─── Misc ───
|
|
*.bak
|
|
*.tmp
|
|
*.temp
|