debtmap 0.16.4

Code complexity and technical debt analyzer
Documentation
1
2
3
4
5
6
7
8
9
//! Error-prone code pattern detection.
//!
//! This module identifies code patterns that are likely to contain bugs or
//! cause maintenance issues, such as error handling anti-patterns and
//! common programming mistakes.

pub mod error_prone;

pub use error_prone::{check_error_prone_patterns, ErrorPronePattern, PatternType, Severity};