fallow_cli/lib.rs
1#![expect(clippy::print_stdout, clippy::print_stderr)]
2
3/// Metric and rule definitions for explainable CLI output.
4pub mod explain;
5
6/// Health / complexity analysis report types.
7pub mod health_types;
8
9/// Regression detection: baseline comparison and tolerance checking.
10pub mod regression;
11
12/// Report formatting utilities for analysis results.
13///
14/// Exposed for snapshot testing of output formats.
15pub mod report;