We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fddd573 commit 7bbc6f8Copy full SHA for 7bbc6f8
.clang-tidy
@@ -33,7 +33,7 @@ Checks: >
33
34
WarningsAsErrors: ''
35
36
-HeaderFilterRegex: '.*\.(h|hpp)$'
+HeaderFilterRegex: '.*/(phlex|form)/.*\.(h|hpp)$'
37
38
CheckOptions:
39
# Naming conventions
Modules/private/RunClangTidyFix.sh.in
@@ -61,7 +61,7 @@ fi
61
CMD=("$RUN_CLANG_TIDY" -p "$COMPILE_DB" -clang-tidy-binary "$CLANG_TIDY_BIN" -config-file "$CLANG_TIDY_CONFIG")
62
[ -n "$CHECKS_ARG" ] && CMD+=("$CHECKS_ARG")
63
[ -n "$EXPORT_FIXES_FILE" ] && CMD+=("-export-fixes=$EXPORT_FIXES_FILE")
64
-CMD+=("-source-filter" "$FILES_REGEX" "-header-filter" "$FILES_REGEX")
+CMD+=("-source-filter" "$FILES_REGEX")
65
[ "$DO_FIX" -eq 1 ] && CMD+=("-fix")
66
67
if [ ${#FILES_ARG_LIST[@]} -gt 0 ]; then
0 commit comments