fix: do not run luacheck over files in ./target directory (#2752)

This commit is contained in:
Dmitry Torokhov
2025-10-11 00:40:23 -07:00
committed by GitHub
parent 4390828e88
commit 9fb2be881c

View File

@@ -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/