From f936946ab8b8bef4f9048f86f727201c1aed2f17 Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Thu, 26 Sep 2024 16:50:49 -0700 Subject: [PATCH] Move config security depth to 25 so tests pass --- src/analyzer/config/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/analyzer/config/mod.rs b/src/analyzer/config/mod.rs index f28eec97..fb510334 100644 --- a/src/analyzer/config/mod.rs +++ b/src/analyzer/config/mod.rs @@ -55,7 +55,7 @@ impl SecurityConfig { Self { ignore_patterns: Vec::new(), ignore_sink_files: FxHashMap::default(), - max_depth: 20, + max_depth: 25, } } }