Archived
1
0

fixup! fixup!: use apk for lint scripts

This commit is contained in:
Joe Previte 2022-09-22 10:28:39 -07:00
parent 33163e84c8
commit 76168c96bc
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

9
ci/dev/lint-scripts.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
shellcheck -e SC2046,SC2164,SC2154,SC1091,SC1090,SC2002 $(git ls-files '*.sh' | grep -v 'lib/vscode')
}
main "$@"