diff --git a/scripts/style-check.sh b/scripts/style-check.sh index 181ab4581..bf3b906f3 100755 --- a/scripts/style-check.sh +++ b/scripts/style-check.sh @@ -1,3 +1,4 @@ #!/usr/bin/env bash -luacheck `find -name "*.lua"` --codes +# ignore indent test files +luacheck `find -name "*.lua" -not -path "./lua/tests/indent/lua/*"` --codes