docs: fix contradictions in AGENTS.md regarding clippy and allow usage

This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2026-02-21 17:27:20 -03:00
parent d08dab26dc
commit 49930f2aa0

View file

@ -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.
---