early emojification

This commit is contained in:
2026-04-27 17:45:40 +02:00
parent acf5bb5409
commit b677e80b80
6 changed files with 338 additions and 140 deletions

View File

@@ -120,8 +120,8 @@ case "$cmd" in
python3 - <<'PY'
from pathlib import Path
skip = {"node_modules", ".venv", "venv"}
exts = {".ts", ".py"}
skip = {"node_modules", ".venv", "venv", ".venv-ray"}
exts = {".ts", ".py", ".ipynb"}
total = 0
for path in Path(".").rglob("*"):
if not path.is_file() or path.suffix not in exts or any(part in skip for part in path.parts):