shellcheck.sh 282 B

12345678910
  1. #!/bin/sh
  2. # Copyright (C) Viktor Szakats
  3. #
  4. # SPDX-License-Identifier: curl
  5. shellcheck --version
  6. # shellcheck disable=SC2046
  7. shellcheck --exclude=1091 \
  8. --enable=avoid-nullary-conditions,deprecate-which \
  9. $(grep -l -E '^#!(/usr/bin/env bash|/bin/sh|/bin/bash)' $(git ls-files))