drep-ai 2.7.2

A local commit gate: runs the linters your repo configures, and sends changed code to an LLM for review
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Analysis results and the vocabulary they are reported in.
//!
//! Types live at one public path each - no facade re-exports, so consumers
//! cannot pick arbitrarily between `analysis::Severity` and
//! `analysis::findings::Severity` and drift apart.

pub mod acknowledgements;
pub mod code_quality;
pub mod findings;
pub mod payload;
pub mod prompt;
pub(crate) mod response_contract;
pub mod result;

#[cfg(test)]
mod tests;