Skip to main content

sniff/
lib.rs

1pub mod analyzer;
2pub mod callgraph;
3pub mod cli;
4pub mod config;
5pub mod config_loader;
6pub mod env_value;
7pub mod file_verdicts;
8pub mod language_adapter;
9pub mod languages;
10pub mod llm;
11pub mod parser;
12pub mod report_types;
13pub mod reporter;
14pub mod roles;
15pub mod scorer;
16pub mod signal_layers;
17pub(crate) mod slop_reason;
18pub mod symbol_graph;
19pub mod types;
20pub mod walker;