From 33389f9c7fbfd4645f9d50ef492f6e2ffb45f2e2 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Mon, 14 Jul 2025 08:45:06 -1000 Subject: [PATCH] Revert "do not analyze platformio files" This reverts commit 55a7926670247ca9ccc90821d2ec3ffa05878b08. --- script/clang-tidy | 2 -- 1 file changed, 2 deletions(-) diff --git a/script/clang-tidy b/script/clang-tidy index b068b194bf..7e51e3192b 100755 --- a/script/clang-tidy +++ b/script/clang-tidy @@ -152,8 +152,6 @@ def run_tidy(executable, args, options, tmpdir, path_queue, lock, failed_files): if sys.stdout.isatty(): invocation.append("--use-color") - # Exclude PlatformIO files from analysis since we can't fix issues in external code - # and they often generate false positives invocation.append( f"--header-filter=^{os.path.abspath(basepath)}/(?!.*\\.platformio/).*" )