sanitize.py
python
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab
NXP-b DONE: independent BV-r2 pass + ISR (SD-17)
Human
minor
⚠ breaking
5 days ago
| 1 | """Sanitize CLI output to avoid absolute machine paths (§K4.9).""" |
| 2 | |
| 3 | from __future__ import annotations |
| 4 | |
| 5 | from pathlib import Path |
| 6 | |
| 7 | |
| 8 | def sanitize_text(text: str, repo_root: Path) -> str: |
| 9 | """Replace the resolved repo root prefix with ``.`` in free-form text.""" |
| 10 | root = str(repo_root.resolve()) |
| 11 | return text.replace(root, ".") |
| 12 | |
| 13 | |
| 14 | def format_config_error(exc, repo_root: Path) -> str: |
| 15 | """Format a config error without leaking absolute paths.""" |
| 16 | return exc.message |
| 17 | |
| 18 | |
| 19 | def config_exit_code(exc) -> int: |
| 20 | """Map a ``ConfigError`` to its CLI exit code (default ``2``).""" |
| 21 | code = getattr(exc, "exit_code", None) |
| 22 | return code if isinstance(code, int) else 2 |
File History
1 commit
sha256:c07f2f34a0db9f43fe866f157d1935322008545ff8940c06c7c921eb219c55ab
NXP-b DONE: independent BV-r2 pass + ISR (SD-17)
Human
minor
⚠
5 days ago