Merge pull request #809 from dlang-community/disable-import-check

Disable the local imports check by default
This commit is contained in:
Brian Schott 2020-06-23 01:14:09 -07:00 committed by GitHub
commit 64280ca261
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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