From 085b22843945c3b62a9bc3416e83a2bb8af8039c Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Fri, 27 Oct 2023 04:19:45 -0700 Subject: [PATCH] fix: only run clang-tidy on .cpp files --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 313dedb..388eb2f 100644 --- a/Justfile +++ b/Justfile @@ -7,7 +7,7 @@ check-format: # the lint ends up running over a large amount of llvm surface area and it takes considerably # longer than the extra build time from using release mode lint: release - clang-tidy src/** --load=build/release/libtidyfox.so + clang-tidy src/**.cpp --load=build/release/libtidyfox.so build: cmake -GNinja -B build/debug \