From d2ac969348c0f35c051589d58456dd8554bc6ba2 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 22 May 2023 12:23:13 +0930 Subject: [PATCH] feat(md_lint_config): migrated from website repo !6 --- .markdownlint.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 0000000..e095433 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,19 @@ +{ + "line-length": false, + "MD007": { + "indent": 4 + }, + "MD033": { + "allowed_elements": [ "div", "s", "span", "u", "p" ] + }, + "blanks-around-headings":{ + "lines_above": 2, + "lines_below": 1 + }, + "MD012": { + "maximum": 2 + }, + "comment": { + "MD012": "MD012 max=2 added so that headings can have two lines above for clarity." + } +}