Skip to main content

fallow_cli/
lib.rs

1#![expect(
2    clippy::print_stdout,
3    clippy::print_stderr,
4    reason = "CLI binary produces intentional terminal output"
5)]
6
7/// CODEOWNERS file parser and ownership lookup.
8pub mod codeowners;
9
10/// Metric and rule definitions for explainable CLI output.
11pub mod explain;
12
13/// Health / complexity analysis report types.
14pub mod health_types;
15
16/// Regression detection: baseline comparison and tolerance checking.
17pub mod regression;
18
19/// Report formatting utilities for analysis results.
20///
21/// Exposed for snapshot testing of output formats.
22pub mod report;