forked from OSchip/llvm-project
[clang-tidy] clang-analyzer-alpha* checks are not registered, so there's no need to disable them
llvm-svn: 286222
This commit is contained in:
parent
7c7ea7d0ae
commit
7783ea6a61
|
@ -49,10 +49,9 @@ Configuration files:
|
|||
|
||||
)");
|
||||
|
||||
const char DefaultChecks[] = // Enable these checks:
|
||||
const char DefaultChecks[] = // Enable these checks by default:
|
||||
"clang-diagnostic-*," // * compiler diagnostics
|
||||
"clang-analyzer-*," // * Static Analyzer checks
|
||||
"-clang-analyzer-alpha*"; // * but not alpha checks: many false positives
|
||||
"clang-analyzer-*"; // * Static Analyzer checks
|
||||
|
||||
static cl::opt<std::string> Checks("checks", cl::desc(R"(
|
||||
Comma-separated list of globs with optional '-'
|
||||
|
|
Loading…
Reference in New Issue