From aa393d2274fc558245ce534318211aa49d1e23bb Mon Sep 17 00:00:00 2001 From: RRudder <96507400+RRudder@users.noreply.github.com> Date: Mon, 16 Sep 2024 11:16:24 +1000 Subject: [PATCH 1/2] Update .markdownlint.json to ignore first line as heading Ignoring first line as heading allows a template to begin with the description contents for each submission type. --- .markdownlint.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.markdownlint.json b/.markdownlint.json index 4dd4167b..89397e53 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -6,5 +6,6 @@ "line_length": false, "fenced-code-language": false, "no-emphasis-as-heading": false, + "first-line-heading": false, "blanks-around-headings": false } From d9f55528c7a1e72aae3036875247d73ca97cf307 Mon Sep 17 00:00:00 2001 From: RRudder <96507400+RRudder@users.noreply.github.com> Date: Thu, 26 Sep 2024 09:50:51 +1000 Subject: [PATCH 2/2] Update .markdownlint.json `"MD041": false,` tells the linting tool to ignore the rule that says that the first line must start with a heading. e.g. # Title of File. This will allow the template.md files to start with the description of the vulnerability. A feature which will decrease the time it takes for penetration testing report creation. --- .markdownlint.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.markdownlint.json b/.markdownlint.json index 89397e53..47812c78 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -6,6 +6,6 @@ "line_length": false, "fenced-code-language": false, "no-emphasis-as-heading": false, - "first-line-heading": false, + "MD041": false, "blanks-around-headings": false }