From 7c042af56805cabe4b2313c55e338fcf3a467dd0 Mon Sep 17 00:00:00 2001 From: Zehua Zou <41586196+HuaHuaY@users.noreply.github.com> Date: Tue, 11 Nov 2025 19:23:32 +0800 Subject: [PATCH] fix: correct clang-tidy HeaderFilterRegex to match Posix ERE --- .clang-tidy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 883962125..c6fcc6c56 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -39,4 +39,4 @@ CheckOptions: - key: readability-identifier-naming.ProtectedMemberSuffix value: '_' -HeaderFilterRegex: '(?!_deps)(src|test|example)' +HeaderFilterRegex: 'src/iceberg|example'