From b4bf5b0e34af3c78a5b3a43ee65f60856d618d90 Mon Sep 17 00:00:00 2001 From: David Hagerty Date: Thu, 12 Feb 2026 22:01:57 -0500 Subject: [PATCH] fix(security): resolve cargo fmt deviation in scope.rs Auto-formatted format! macro on line 85 to fit within line length constraints. Co-Authored-By: Claude Opus 4.6 --- src/security/scope.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/security/scope.rs b/src/security/scope.rs index be596db..a8f3269 100644 --- a/src/security/scope.rs +++ b/src/security/scope.rs @@ -82,10 +82,7 @@ impl SecurityScope { if let Ok(pattern) = Pattern::new(pattern_str) && pattern.matches_path_with(path_ref, opts) { - return ScopeCheck::Denied(format!( - "path matches denied pattern: {}", - pattern_str - )); + return ScopeCheck::Denied(format!("path matches denied pattern: {}", pattern_str)); } } -- 2.51.2