├── .github ├── dependabot.yml └── workflows │ └── build.yml ├── LICENSE ├── README.md └── bin ├── install └── list-all /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/README.md -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/bin/install -------------------------------------------------------------------------------- /bin/list-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luizm/asdf-shellcheck/HEAD/bin/list-all --------------------------------------------------------------------------------