We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 267b0bb commit da52744Copy full SHA for da52744
clang_tidy/run_clang_tidy.sh
@@ -33,9 +33,11 @@ trap 'if (($?)); then cat "$logfile" 1>&2; fi; rm "$logfile"' EXIT
33
# re-promoted to an error. See the clang-tidy bug here for details:
34
# https://github.com/llvm/llvm-project/issues/61969
35
set -- \
36
- --verify-config \
37
--checks=-clang-diagnostic-builtin-macro-redefined \
38
--warnings-as-errors=-clang-diagnostic-builtin-macro-redefined \
39
"$@"
40
41
-"${CLANG_TIDY_BIN}" "$@" >"$logfile" 2>&1
+{
+ "${CLANG_TIDY_BIN}" --quiet --verify-config \
42
+ && "${CLANG_TIDY_BIN}" "$@"
43
+} >"$logfile" 2>&1
0 commit comments