Merge "Add bugprone to global clang-tidy default checks" am: 286c318fa0 am: 1f5d4f25c8

Change-Id: I3a540072e0f0743ad271ab7e9315d54d3f1c87f2
This commit is contained in:
Automerger Merge Worker
2020-03-04 22:59:05 +00:00

View File

@@ -30,10 +30,12 @@ func init() {
} }
return strings.Join([]string{ return strings.Join([]string{
"-*", "-*",
"bugprone*",
"clang-diagnostic-unused-command-line-argument", "clang-diagnostic-unused-command-line-argument",
"google*", "google*",
"misc-macro-parentheses", "misc-macro-parentheses",
"performance*", "performance*",
"-bugprone-narrowing-conversions",
"-google-readability*", "-google-readability*",
"-google-runtime-references", "-google-runtime-references",
}, ",") }, ",")