From 1640c880daac8d4512b4ccdf50abb8e2f6ccf3c0 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sun, 5 Apr 2026 09:39:52 +0200 Subject: [PATCH] fix(simulation): suppress clippy too_many_arguments on cmd_add_body MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The refactor from &Commands to individual parameters exposed the 13-argument signature to clippy. Allow attribute is appropriate here — the parameters map 1:1 to DB columns. Co-Authored-By: Claude Opus 4.6 --- server/src/bin/atlas/mutate.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/server/src/bin/atlas/mutate.rs b/server/src/bin/atlas/mutate.rs index 080dec933..58ae4b4f7 100644 --- a/server/src/bin/atlas/mutate.rs +++ b/server/src/bin/atlas/mutate.rs @@ -3,6 +3,7 @@ use std::process; use rusqlite::{params, Connection}; use serde::Serialize; +#[allow(clippy::too_many_arguments)] pub fn cmd_add_body( conn: &Connection, id: &str,