deslop 0.1.0

A static analyzer that spots low-context and AI-assisted code patterns across naming, concurrency, security, performance, and test quality.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod analysis;
pub mod benchmark;
mod heuristics;
mod index;
mod model;
mod scan;

pub use benchmark::{BenchmarkOptions, benchmark_repository};
pub use model::{
    BenchmarkReport, FileReport, Finding, FunctionFingerprint, IndexSummary, ParseFailure,
    ScanOptions, ScanReport, Severity, StageStats, TimingBreakdown,
};
pub use scan::scan_repository;