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()) } }