From 87583f685fe8b6257bd096816ef4600dee20a0c4 Mon Sep 17 00:00:00 2001 From: Steve Hipwell Date: Wed, 27 Oct 2021 11:27:12 +0100 Subject: [PATCH] chore: update issue templates (#2826) --- .github/ISSUE_TEMPLATE/Bug_report.md | 26 ++++++++++++----------- .github/ISSUE_TEMPLATE/Package_request.md | 10 ++++----- .markdownlint.json | 6 ++++++ 3 files changed, 24 insertions(+), 18 deletions(-) create mode 100644 .markdownlint.json diff --git a/.github/ISSUE_TEMPLATE/Bug_report.md b/.github/ISSUE_TEMPLATE/Bug_report.md index f8c66c351ceb0..4b34a33e82b94 100644 --- a/.github/ISSUE_TEMPLATE/Bug_report.md +++ b/.github/ISSUE_TEMPLATE/Bug_report.md @@ -3,29 +3,31 @@ name: "Bug Report" about: "I am facing some problems." title: "" labels: "bug" - --- ## Bug Report -**Package Name:** +**Package Name:** [PLACEHOLDER] + +### Current Behaviour + + -#### Current Behavior - +### Expected Behaviour -#### Expected Behavior -#### Additional context/output +### Additional context/output + -#### Possible Solution +### Possible Solution + ### System details -**Windows version:** -**OS arch (32 or 64 bit):** -**PowerShell version:** -**Additional software:** - +**Windows version:** [PLACEHOLDER] +**OS arch (32 or 64 bit):** [PLACEHOLDER] +**PowerShell version:** [PLACEHOLDER] +**Additional software:** [PLACEHOLDER] diff --git a/.github/ISSUE_TEMPLATE/Package_request.md b/.github/ISSUE_TEMPLATE/Package_request.md index 75288998f58b4..5f353621bc0cd 100644 --- a/.github/ISSUE_TEMPLATE/Package_request.md +++ b/.github/ISSUE_TEMPLATE/Package_request.md @@ -3,7 +3,6 @@ name: "Package Request" about: "I have a suggestion for a package (and may want to implement it)!" title: "[Request] " labels: "package-request" - --- ## Package Request @@ -20,11 +19,10 @@ For a package to be acceptable in the Main bucket, it should be: ### Information -**Name:** - -**Description:** +**Name:** [PLACEHOLDER] -**Homepage:** +**Description:** [PLACEHOLDER] -**Download link(s):** +**Homepage:** [PLACEHOLDER] +**Download link(s):** [PLACEHOLDER] diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000000000..ef592cfdf876f --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,6 @@ +{ + "MD013": false, + "MD024": { + "siblings_only": true + } +}