Disable auto_function_check by default

Since it may be used to auto-infer function attributes
This commit is contained in:
WebFreak001 2023-07-13 16:55:04 +02:00 committed by Jan Jurzitza
parent 5d67707744
commit f22b2e587c
1 changed files with 1 additions and 1 deletions
src/dscanner/analysis

View File

@ -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;