zerum 0.2.0

Deterministic-first Python code governance: ~75 native checks (ZR001–ZR510), explain mode, human/JSON CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;
use std::process::ExitCode;

fn main() -> ExitCode {
    match zerum::cli::Cli::parse().run() {
        Ok(code) => code,
        Err(err) => {
            eprintln!("error: {err:#}");
            ExitCode::from(zerum::cli::EXIT_ERROR)
        }
    }
}