deslop 0.2.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
14
15
pub(crate) mod comments;
mod common;
pub(crate) mod engine;
pub(crate) mod go;
pub(crate) mod hallucination;
pub(crate) mod naming;
pub(crate) mod python;
pub(crate) mod registry;
pub(crate) mod rust;
pub(crate) mod security;
pub(crate) mod test_quality;
#[cfg(test)]
mod tests;

pub(crate) use self::engine::{evaluate_file, evaluate_repo};