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
//! LLM-assisted review — explicitly opt-in.
//!
//! TODO(phase-4): wire `LlmAnalyzer` into `zerum check --with-llm`.

#![allow(dead_code)]

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

pub struct LlmAnalyzer;

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