diff --git a/src/dscanner/analysis/config.d b/src/dscanner/analysis/config.d index b0e5be3..f2f377c 100644 --- a/src/dscanner/analysis/config.d +++ b/src/dscanner/analysis/config.d @@ -122,8 +122,8 @@ struct StaticAnalysisConfig @INI("Checks for use of the comma operator") string comma_expression_check = Check.enabled; - @INI("Checks for local imports that are too broad") - string local_import_check = Check.enabled; + @INI("Checks for local imports that are too broad. Only accurate when checking code used with D versions older than 2.071.0") + string local_import_check = Check.disabled; @INI("Checks for variables that could be declared immutable") string could_be_immutable_check = Check.enabled;