v0.1.0-pre.011-fix-01

This commit is contained in:
2026-07-24 15:06:27 +02:00
parent 42e8a203ec
commit 60660ca555
161 changed files with 10665 additions and 977 deletions

View File

@@ -1,8 +1,8 @@
#!/usr/bin/env python3
# file: scripts/audit_rust_workspace_rules.py
# version: 2
# version: 3
"""Run both the general Rust and khadhroony-specific workspace audits."""
"""Run the general, export-completeness and khadhroony workspace audits."""
from __future__ import annotations
@@ -12,7 +12,7 @@ import subprocess
def main() -> int:
"""Run both independent audit scripts."""
"""Run all independent audit scripts."""
parser = argparse.ArgumentParser()
parser.add_argument("--root", default=".")
@@ -21,6 +21,7 @@ def main() -> int:
script_dir = pathlib.Path(__file__).resolve().parent
commands = [
["python3", str(script_dir / "audit_rust_general_rules.py"), "--root", arguments.root],
["python3", str(script_dir / "audit_rust_export_completeness.py"), "--root", arguments.root],
["python3", str(script_dir / "audit_khadhroony_workspace_rules.py"), "--root", arguments.root],
]
if arguments.report_only: