From cf3af7a1aac28670bbf028d7aa23cf5701095fe5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gorzeli=C5=84ski?= Date: Tue, 23 May 2023 10:22:41 +0200 Subject: [PATCH] Docs: Add an example config for markdown linting. --- .markdownlint.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 00000000000..e889334eeae --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,14 @@ +{ + "no-trailing-spaces": true, + "blanks-around-headers": true, + "ul-style": { + "style": "asterisk" + }, + "no-hard-tabs": false, + "no-space-in-code": true, + "no-space-in-emphasis": true, + "no-space-in-links": true, + "no-inline-html": false, + "no-trailing-punctuation": false, + "line-length": false +} \ No newline at end of file