zerum 0.1.0

Deterministic-first Python code governance: native checks (ZR001–ZR010), CLI, and SARIF/JSON reporters
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! External checker orchestration (Ruff, Mypy, etc.).
//!
//! TODO(phase-2): wire `ExternalAnalyzer` into the CLI and `integrations/`.

#![allow(dead_code)]

use crate::core::Issue;
use anyhow::Result;
use std::path::Path;

pub struct ExternalAnalyzer;

impl ExternalAnalyzer {
    pub fn run(_root: &Path) -> Result<Vec<Issue>> {
        Ok(Vec::new())
    }
}