+clang-tidy-filter
authorJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 19 Dec 2019 14:48:12 +0000 (15:48 +0100)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Thu, 19 Dec 2019 14:48:12 +0000 (15:48 +0100)
bin/clang-tidy-filter [new file with mode: 0755]

diff --git a/bin/clang-tidy-filter b/bin/clang-tidy-filter
new file mode 100755 (executable)
index 0000000..a8ed2eb
--- /dev/null
@@ -0,0 +1,6 @@
+#! /usr/bin/perl -n
+next if /^\d+ warnings? generated[.]$/;
+next if /^Suppressed \d+ warning/;
+next if /^Use -header-filter=[.][*] to display errors from all non-system headers[.] Use -system-headers to display errors from system headers as well[.]$/;
+next if /^clang-tidy /;
+print;