sanitize.py
python
sha256:0e9549ec7b463911bc08b7d586dc320b1ac9b1f5c943ee7e3865dcc6cb0f6f83
chore(governance): sync handover+roadmap to 84db8c8 (drift:…
Human
10 hours 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:6abcf1fa82a7a621ccbc945f19acdba5bc0db54569599404a1452fb4a096a199
fix(ISR): default require_independent_second_reviewer to require
Human
minor
⚠
10 hours ago