enable cppcoreguidelines-pro-type-vararg checks

We only use varargs in some code we borrowed from nlohmann, so ignore
that, and enable the check.

Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Iab1305784e7532e2ee10c617fb59b75aba142ce6
diff --git a/.clang-tidy b/.clang-tidy
index 93db922..b708a70 100644
--- a/.clang-tidy
+++ b/.clang-tidy
@@ -210,6 +210,7 @@
 cppcoreguidelines-pro-type-cstyle-cast,
 cppcoreguidelines-pro-type-member-init,
 cppcoreguidelines-pro-type-reinterpret-cast,
+cppcoreguidelines-pro-type-vararg,
 cppcoreguidelines-special-member-functions,
 misc-misplaced-const,
 #misc-no-recursion,