fallow-cli 2.10.0

CLI for the fallow TypeScript/JavaScript codebase analyzer
Documentation
#![expect(
    clippy::print_stdout,
    clippy::print_stderr,
    reason = "CLI binary produces intentional terminal output"
)]

/// Metric and rule definitions for explainable CLI output.
pub mod explain;

/// Health / complexity analysis report types.
pub mod health_types;

/// Regression detection: baseline comparison and tolerance checking.
pub mod regression;

/// Report formatting utilities for analysis results.
///
/// Exposed for snapshot testing of output formats.
pub mod report;