sniff-cli 0.1.2

An exhaustive LLM-backed slop finder for codebases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[path = "ref_count_flags.rs"]
mod flags;
#[path = "callgraph_refs.rs"]
mod refs;

pub fn build_references(
    file_records: &mut [crate::types::FileRecord],
    graph: &crate::symbol_graph::SymbolGraph,
) {
    refs::build_references(file_records, graph);
}

pub use flags::build_ref_count_flags;