Files
would-reformat/ci/shellcheck.sh
2023-09-30 17:32:55 -06:00

8 lines
118 B
Bash
Executable File

#!/bin/bash
files=$(find . -type f | grep -v '\.git' | grep '\.sh')
for i in $files; do
shellcheck -x "$i"
done