Merge pull request #689 from dlang-community/disa-init-check

Set the check for useless init disabled by default
merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
The Dlang Bot 2018-08-22 16:48:59 +02:00 committed by GitHub
commit 1b3d90d6b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ struct StaticAnalysisConfig
string vcall_in_ctor = Check.enabled;
@INI("Check for useless user defined initializers")
string useless_initializer = Check.enabled;
string useless_initializer = Check.disabled;
@INI("Check allman brace style")
string allman_braces_check = Check.disabled;