garbage_code_hunter/
lib.rs1pub mod analyzer;
5pub mod config;
6pub mod context;
7pub mod cross_file;
8pub mod educational;
9pub mod hall_of_shame;
10pub mod i18n;
11pub mod llm;
12pub mod reporter;
13pub mod rules;
14pub mod scoring;
15pub mod utils;
16
17pub use analyzer::{CodeAnalyzer, CodeIssue, Severity};
18pub use educational::{EducationalAdvice, EducationalAdvisor};
19pub use hall_of_shame::{HallOfShame, ProjectShameStats, ShameEntry};
20pub use i18n::I18n;
21pub use llm::{LlmConfig, LlmRoastProvider, LocalRoastProvider, RoastMap, RoastProvider};
22pub use reporter::Reporter;
23pub use scoring::{CodeQualityScore, CodeScorer, QualityLevel};