rustqual 1.0.0

Comprehensive Rust code quality analyzer — seven dimensions: IOSP, Complexity, DRY, SRP, Coupling, Test Quality, Architecture
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Suppression adapter — parses annotation comments from source text.
//!
//! Only one backend is currently supported: the `// qual:…` comment
//! family parsed line-by-line in `qual_allow`. Additional adapters
//! (e.g. attribute-based or config-level suppression) would become
//! siblings under this module.

#![allow(dead_code, unused_imports)]

pub mod qual_allow;

#[cfg(test)]
mod tests;