repotoire 0.7.1

Graph-powered code analysis CLI. 110 detectors for security, architecture, bus factor, and code quality.
Documentation
1
2
3
4
5
6
7
8
9
//! Performance detectors — N+1 queries, sync-in-async, hot loops.

mod n_plus_one;
mod regex_in_loop;
mod sync_in_async;

pub use n_plus_one::NPlusOneDetector;
pub use regex_in_loop::RegexInLoopDetector;
pub use sync_in_async::SyncInAsyncDetector;