From 93a767ae61bc63e94573372088f3a3df1c3fa56a Mon Sep 17 00:00:00 2001 From: LinZhihao-723 Date: Tue, 3 Dec 2024 22:44:16 -0500 Subject: [PATCH] Add clang-tidy changes --- src/clp_ffi_py/.clang-tidy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/clp_ffi_py/.clang-tidy b/src/clp_ffi_py/.clang-tidy index 66d2844..b492a3b 100644 --- a/src/clp_ffi_py/.clang-tidy +++ b/src/clp_ffi_py/.clang-tidy @@ -1,5 +1,9 @@ InheritParentConfig: true +Checks: + # Disable vararg function checks since many CPython APIs are using varargs + -cppcoreguidelines-pro-type-vararg + CheckOptions: # Variable naming rules # Allow PyObject global variables to start with `Py_`