From f22b2e587c6d3ed782c51de0a289740e2d8d51d6 Mon Sep 17 00:00:00 2001 From: WebFreak001 Date: Thu, 13 Jul 2023 16:55:04 +0200 Subject: [PATCH] Disable auto_function_check by default Since it may be used to auto-infer function attributes --- src/dscanner/analysis/config.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dscanner/analysis/config.d b/src/dscanner/analysis/config.d index 7f4a536..4827259 100644 --- a/src/dscanner/analysis/config.d +++ b/src/dscanner/analysis/config.d @@ -165,7 +165,7 @@ struct StaticAnalysisConfig string lambda_return_check = Check.enabled; @INI("Check for auto function without return statement") - string auto_function_check = Check.enabled; + string auto_function_check = Check.disabled; @INI("Check for sortedness of imports") string imports_sortedness = Check.disabled;