From 9b8e0b6f8c341daca6eac279a4368313692456b7 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Thu, 17 Jul 2025 12:48:56 -0700 Subject: [PATCH] Update issue templates --- .github/ISSUE_TEMPLATE/bug_report.md | 28 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/feature_request.md | 25 ++++++++++++++++++++ 2 files changed, 53 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..11b90d8 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,28 @@ +--- +name: Bug report +about: Create a new bug report +title: '' +labels: '' +assignees: '' + +--- + +#### For bugs with existing features + +- Rule Id (if any, e.g. SC1000): +- My shellcheck version (`shellcheck --version` or "online"): +- [ ] The rule's wiki page does not already cover this (e.g. https://shellcheck.net/wiki/SC2086) +- [ ] I tried on https://www.shellcheck.net/ and verified that this is still a problem on the latest commit + +#### Here's a snippet or screenshot that shows the problem: + +```sh +#!/bin/sh +your script here +``` + +#### Here's what shellcheck currently says: + + + +#### Here's what I wanted or expected to see: diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..7184769 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,25 @@ +--- +name: Feature request +about: Suggest an idea for this project +title: '' +labels: '' +assignees: '' + +--- + +#### For new checks and feature suggestions +- [ ] https://www.shellcheck.net/ (i.e. the latest commit) currently gives no useful warnings about this +- [ ] I searched through https://github.com/koalaman/shellcheck/issues and didn't find anything related + +#### Here's a snippet or screenshot that shows a potential problem: + +```sh +#!/bin/sh +your script here +``` + +#### Here's what shellcheck currently says: + + + +#### Here's what I wanted to see: