From 76aa0c434a27be1865144bada7ba74f3d6d5e9de Mon Sep 17 00:00:00 2001 From: txtsd Date: Wed, 13 Jul 2022 00:51:20 +0530 Subject: [PATCH] feat(markdown): Add markdownlint config Signed-off-by: txtsd --- .markdownlint.yaml | 12 ++++++++++++ .markdownlintignore | 2 ++ 2 files changed, 14 insertions(+) create mode 100644 .markdownlint.yaml create mode 100644 .markdownlintignore diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 00000000..5781edb0 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,12 @@ +# MD013/line-length - Line length +MD013: false + +# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content +MD024: + siblings-only: true + +# MD033/no-inline-html Inline HTML +MD033: false + +# MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading +MD041: false diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 00000000..a8669d01 --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1,2 @@ +libraries/nbtplusplus +libraries/quazip