0.3.0-0-pre.1

This commit is contained in:
2026-09-20 06:15:50 +02:00
parent 74be610697
commit 54079accb5
9 changed files with 567 additions and 20 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env python3
# file: scripts/audit_rust_workspace_rules.py
# version: 1
# version: 2
"""Run all Rust normalization and games.sasedev workspace audits."""
@@ -20,9 +20,9 @@ def main() -> int:
arguments = parser.parse_args()
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_project_workspace_rules.py"), "--root", arguments.root],
[sys.executable, "-B", str(script_dir / "audit_rust_general_rules.py"), "--root", arguments.root],
[sys.executable, "-B", str(script_dir / "audit_rust_export_completeness.py"), "--root", arguments.root],
[sys.executable, "-B", str(script_dir / "audit_project_workspace_rules.py"), "--root", arguments.root],
]
for command in commands:
completed = subprocess.run(command, check=False)