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 <sean.robinson@scottsdalecc.edu>
This commit is contained in:
Sean Robinson 2022-11-29 09:21:45 -07:00
parent f901d9edb4
commit 4f47631525

View File

@ -18,4 +18,4 @@ CheckOptions:
- { key: readability-identifier-naming.StructIgnoredRegexp, value: "parse_number" } - { key: readability-identifier-naming.StructIgnoredRegexp, value: "parse_number" }
- { key: readability-identifier-naming.VariableCase, value: lower_case } - { key: readability-identifier-naming.VariableCase, value: lower_case }
HeaderFilterRegex: '.*' HeaderFilterRegex: 'argparse/.+\.hpp'