More restrictive shellcheck: add -o all.

This commit is contained in:
Alexander Arlt 2023-04-05 15:13:11 -05:00
parent d7ecee4f0a
commit 1c38309983

View File

@ -14,4 +14,4 @@ if [ ! -f "${SHELLCHECK}" ]; then
fi
mapfile -t FILES < <(find . -type f -name "*.sh")
"${SHELLCHECK}" "${FILES[@]}"
"${SHELLCHECK}" -o all "${FILES[@]}"