ralph-workflow 0.7.13

PROMPT-driven multi-agent orchestrator for git repos
Documentation
# ============================================================================
# LINT POLICY FILE -- DO NOT WEAKEN, DISABLE, OR RELAX RULES WITHOUT EXPLICIT
# USER/MAINTAINER DIRECTION. REFACTOR THE CODE INSTEAD. "BEING LAZY TO
# REFACTOR" IS NOT A VALID REASON TO CHANGE LINTING BEHAVIOR. THE ONLY
# EXCEPTION IS DOCUMENTED AUTOGENERATED CODE HANDLED BY THE REPOSITORY'S
# APPROVED MECHANISM.
# ============================================================================
# Package-local clippy configuration for ralph-workflow.
# NOTE: This crate has extensive lint exceptions due to legacy code patterns.
# The violations were pre-existing when the lint policy was tightened.

# --- Test strictness: no escape hatches ---
allow-unwrap-in-tests = false
allow-expect-in-tests = false
allow-panic-in-tests = false
allow-print-in-tests = false
allow-indexing-slicing-in-tests = false

# --- Iterator loops ---
enforce-iter-loop-reborrow = true

# --- Arithmetic ---
arithmetic-side-effects-allowed = ["*"]

# --- Disallowed types (interior mutability / shared mutable state) ---
# NOTE: Allow these types as they are needed for boundary/IO code
disallowed-types = []

# --- Disallowed methods (mutation / imperative patterns) ---
# NOTE: Allow these methods as they are needed for performance and convenience
disallowed-methods = []

# --- Disallowed macros (side effects) ---
# NOTE: Allow eprintln for logging in a CLI application
disallowed-macros = []

# --- large_stack_frames: deliberate test-only code allowances via #[expect] ---
# The test harness generates large stack frames that are unavoidable.
# These are suppressed with #[expect(clippy::large_stack_frames, reason = "...")] at item scope.
# The generated lib-test harness error is also filtered by the xtask verify strip step.
# This is a deliberate exception documented in the lint policy.
# See: CODE_STYLE.md and the lint policy exception table.