From 4f47631525380cb6bb4131153c0872380cfaba01 Mon Sep 17 00:00:00 2001 From: Sean Robinson Date: Tue, 29 Nov 2022 09:21:45 -0700 Subject: [PATCH] Update clang-tidy configuration to only include main header The previous regex would also analyze doctest.hpp. We don't need to check a vendored library. Signed-off-by: Sean Robinson --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index d0b28f4..7d0c827 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -18,4 +18,4 @@ CheckOptions: - { key: readability-identifier-naming.StructIgnoredRegexp, value: "parse_number" } - { key: readability-identifier-naming.VariableCase, value: lower_case } -HeaderFilterRegex: '.*' +HeaderFilterRegex: 'argparse/.+\.hpp'