From 9fb2be881cb1c7c123e9d022066cd2ba9320e635 Mon Sep 17 00:00:00 2001 From: Dmitry Torokhov Date: Sat, 11 Oct 2025 00:40:23 -0700 Subject: [PATCH] fix: do not run luacheck over files in ./target directory (#2752) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea1c3a7..9c5c67c 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ clean: @rm -rf $(BUILD_DIR) luacheck: - @luacheck `find -name "*.lua"` --codes + @luacheck `find \( -path './target' -prune \) -o -name "*.lua" -print` --codes luastylecheck: @stylua --check lua/ plugin/ tests/