repotoire 0.8.0

Graph-powered code analysis CLI. 110 detectors for security, architecture, bus factor, and code quality.
Documentation
//! Phase 2e annotations entry point — kebab-cased to per-detector intent.
//!
//! The actual parser lives in `super::super::dual_branch_annotation`
//! (consolidated in Phase 2c, after the rule-of-three). This module
//! exists so existing `super::annotation::parse_python_comment` call
//! sites inside the detector keep working without churn, AND so that
//! any Phase 2e-specific annotation kind validation can land here
//! without affecting the shared parser.
//!
//! Phase 2e uses two kinds (per decisions doc D2):
//! - `xxe-safe[<reason>]` — collapses to Benign / Info.
//! - `xxe-vulnerable[<source>]` — collapses to RealBug /
//!   the existing single-branch severity (`Critical` if user input
//!   flows to parser, else `High`, per decisions doc D3).
//!
//! The shared parser is kind-agnostic; this module is the natural
//! home for any future Phase 2e-specific kind validation or
//! normalization.

#[allow(unused_imports)]
pub(super) use crate::detectors::security::dual_branch_annotation::{
    parse_python_comment, Annotation,
};