Skip to content

Commit

Permalink
Update clang-tidy configuration to only include main header
Browse files Browse the repository at this point in the history
The previous regex would also analyze doctest.hpp.  We don't need to check
a vendored library.

Signed-off-by: Sean Robinson <[email protected]>
  • Loading branch information
skrobinson committed Nov 29, 2022
1 parent f901d9e commit 4f47631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 4f47631

Please sign in to comment.