From aeb56cc3d0ea1ab1f34263048b4fe01334f242d1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 14 Jul 2025 08:45:15 -1000 Subject: [PATCH] Revert "do not analyze platformio files" This reverts commit f76cba0af64a46334992253291f38f67ef3609d0. --- script/clang-tidy | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/script/clang-tidy b/script/clang-tidy index 7e51e3192b..b5905e0e4e 100755 --- a/script/clang-tidy +++ b/script/clang-tidy @@ -152,9 +152,7 @@ def run_tidy(executable, args, options, tmpdir, path_queue, lock, failed_files): if sys.stdout.isatty(): invocation.append("--use-color") - invocation.append( - f"--header-filter=^{os.path.abspath(basepath)}/(?!.*\\.platformio/).*" - ) + invocation.append(f"--header-filter={os.path.abspath(basepath)}/.*") invocation.append(os.path.abspath(path)) invocation.append("--") invocation.extend(options)