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
//! Shared fixture for the config suite.

/// Write `body` to a fresh `drep.toml`-shaped path in `temp`.
pub(super) fn write_config(temp: &tempfile::TempDir, body: &str) -> std::path::PathBuf {
    let path = temp.path().join("drep.toml");
    std::fs::write(&path, body).expect("write config");
    path
}