├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── lint.yml │ └── semantic-pr.yml ├── .tool-versions ├── LICENSE ├── README.md ├── scripts ├── format.bash └── lint.bash ├── setup.bash └── template ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── PULL_REQUEST │ └── pull_request_template.md ├── dependabot.yml └── workflows │ ├── build.yml │ ├── lint.yml │ ├── release.yml │ └── semantic-pr.yml ├── .gitlab-ci.yml ├── .gitlab ├── issue_templates │ ├── Bug_Report.md │ └── Feature_Request.md └── merge_request_templates │ └── Merge_Request.md ├── .tool-versions ├── README-github.md ├── README-gitlab.md ├── bin ├── download ├── install ├── latest-stable └── list-all ├── contributing-github.md ├── contributing-gitlab.md ├── lib └── utils.bash ├── scripts ├── format.bash └── lint.bash └── version.txt /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/PULL_REQUEST/pull_request_template.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/semantic-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/.github/workflows/semantic-pr.yml -------------------------------------------------------------------------------- /.tool-versions: -------------------------------------------------------------------------------- 1 | shellcheck 0.9.0 2 | shfmt 3.6.0 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/README.md -------------------------------------------------------------------------------- /scripts/format.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/scripts/format.bash -------------------------------------------------------------------------------- /scripts/lint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/scripts/lint.bash -------------------------------------------------------------------------------- /setup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/setup.bash -------------------------------------------------------------------------------- /template/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.editorconfig -------------------------------------------------------------------------------- /template/.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /template/.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /template/.github/PULL_REQUEST/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/PULL_REQUEST/pull_request_template.md -------------------------------------------------------------------------------- /template/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/dependabot.yml -------------------------------------------------------------------------------- /template/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/workflows/build.yml -------------------------------------------------------------------------------- /template/.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/workflows/lint.yml -------------------------------------------------------------------------------- /template/.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/workflows/release.yml -------------------------------------------------------------------------------- /template/.github/workflows/semantic-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.github/workflows/semantic-pr.yml -------------------------------------------------------------------------------- /template/.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.gitlab-ci.yml -------------------------------------------------------------------------------- /template/.gitlab/issue_templates/Bug_Report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.gitlab/issue_templates/Bug_Report.md -------------------------------------------------------------------------------- /template/.gitlab/issue_templates/Feature_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.gitlab/issue_templates/Feature_Request.md -------------------------------------------------------------------------------- /template/.gitlab/merge_request_templates/Merge_Request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/.gitlab/merge_request_templates/Merge_Request.md -------------------------------------------------------------------------------- /template/.tool-versions: -------------------------------------------------------------------------------- 1 | shellcheck 0.9.0 2 | shfmt 3.6.0 3 | -------------------------------------------------------------------------------- /template/README-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/README-github.md -------------------------------------------------------------------------------- /template/README-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/README-gitlab.md -------------------------------------------------------------------------------- /template/bin/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/bin/download -------------------------------------------------------------------------------- /template/bin/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/bin/install -------------------------------------------------------------------------------- /template/bin/latest-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/bin/latest-stable -------------------------------------------------------------------------------- /template/bin/list-all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/bin/list-all -------------------------------------------------------------------------------- /template/contributing-github.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/contributing-github.md -------------------------------------------------------------------------------- /template/contributing-gitlab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/contributing-gitlab.md -------------------------------------------------------------------------------- /template/lib/utils.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/lib/utils.bash -------------------------------------------------------------------------------- /template/scripts/format.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/scripts/format.bash -------------------------------------------------------------------------------- /template/scripts/lint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asdf-vm/asdf-plugin-template/HEAD/template/scripts/lint.bash -------------------------------------------------------------------------------- /template/version.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------