drep-ai 2.5.1

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
17
//! Acceptance tests for `drep check`.
//!
//! The contracts are split by topic across sibling files: failure reporting,
//! input resolution, the deterministic layer, gating and exit codes, output
//! rendering, and tool resolution. The files are wired in here - if you add a
//! file, declare it. A file no `mod` declaration reaches is never compiled,
//! and cargo will not warn about it.

mod deterministic;
mod failover_report;
mod failures;
mod gating;
mod input;
mod output;
mod resolution;
pub(super) mod support;
mod unanalyzed_json;