mirror of
https://github.com/asdf-vm/asdf.git
synced 2024-11-15 01:28:17 -07:00
29 lines
689 B
Bash
Executable File
29 lines
689 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
# check .sh files
|
|
# TODO(jthegedus): unlock this check later
|
|
# TODO shellcheck --shell sh --external-sources \
|
|
# TODO asdf.sh \
|
|
# TODO lib/*.sh
|
|
|
|
# check .bash files
|
|
shellcheck --shell bash --external-sources \
|
|
completions/*.bash \
|
|
bin/asdf \
|
|
bin/private/asdf-exec \
|
|
lib/utils.bash \
|
|
lib/commands/*.bash \
|
|
lib/functions/*.bash \
|
|
scripts/*.bash \
|
|
test/test_helpers.bash \
|
|
test/fixtures/dummy_broken_plugin/bin/* \
|
|
test/fixtures/dummy_legacy_plugin/bin/* \
|
|
test/fixtures/dummy_plugin/bin/*
|
|
|
|
# check .bats files
|
|
# TODO(jthegedus): unlock this check later
|
|
# TODO shellcheck --shell bats --external-sources \
|
|
# TODO test/*.bats
|