pedant-core 0.20.2

Analysis engine for pedant: IR extraction, style checks, and capability detection
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Quality issue detection.
//!
//! Identifies dead stores, discarded results, partial error handling,
//! swallowed `.ok()` calls, and immutable growable bindings within function bodies.

mod dead_store;
mod detect;
mod discarded;
mod immutable;
mod partial;
mod prelude;
mod swallowed;

pub(super) use detect::detect;