├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST │ └── pull_request_template.md └── workflows │ ├── build.yml │ ├── lint.yml │ └── release.yml ├── .gitignore ├── .tool-versions ├── CHANGELOG.md ├── LICENSE ├── README.md ├── bin ├── install └── list-all ├── contributing.md ├── lib └── commands │ └── command.bash ├── scripts ├── shellcheck.bash └── shfmt.bash └── version.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/PULL_REQUEST/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | shellcheck 0.7.2 2 | shfmt 3.3.0 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/README.md -------------------------------------------------------------------------------- /bin/install: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | -------------------------------------------------------------------------------- /bin/list-all: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | echo "0.0.0" 4 | -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/contributing.md -------------------------------------------------------------------------------- /lib/commands/command.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/lib/commands/command.bash -------------------------------------------------------------------------------- /scripts/shellcheck.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewthauer/asdf-alias/HEAD/scripts/shellcheck.bash -------------------------------------------------------------------------------- /scripts/shfmt.bash: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | exec shfmt -d -i 2 -ci . 4 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | --------------------------------------------------------------------------------