From 49930f2aa01bf13091994da78a493f7fa8b887d3 Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Sat, 21 Feb 2026 17:27:20 -0300 Subject: [PATCH] docs: fix contradictions in AGENTS.md regarding clippy and allow usage --- AGENTS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index f37ce23..ebd1f25 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -338,8 +338,8 @@ When ANY error appears in logs during startup or operation: - Use `default-features = false` and explicitly opt-in to needed features ### Linting & Code Quality -- **Clippy**: Code MUST pass `cargo clippy --all-targets --all-features` with **0 warnings**. -- **No Allow**: Do not use `#[allow(clippy::...)]` unless absolutely necessary and documented. +- **Clippy**: Code MUST pass `cargo clippy --workspace` with **0 warnings**. +- **No Allow**: NEVER use `#[allow(clippy::...)]` in source code - FIX the code instead. ---