ralph_workflow/guidelines/mod.rs
1//! Language-Specific Review Guidelines Module
2//!
3//! Provides tailored code review guidance based on the detected project stack.
4//! These guidelines are incorporated into review prompts to help agents focus
5//! on language-specific best practices, common pitfalls, and security concerns.
6
7#![deny(unsafe_code)]
8
9mod base;
10mod functional;
11mod go;
12mod java;
13mod javascript;
14mod php;
15mod python;
16mod ruby;
17mod rust;
18mod stack;
19mod systems;
20
21// Re-export public types.
22pub use base::{CheckSeverity, ReviewGuidelines};
23
24#[cfg(test)]
25mod tests;