From 7c325856c7c98f0000f26debb5b1f4942fccc767 Mon Sep 17 00:00:00 2001 From: Robert Dailey Date: Fri, 5 Feb 2021 12:27:44 -0600 Subject: [PATCH] New markdown lint JSON file Defines certain rules for markdown linting such as the allowed usage of `
` elements, etc. --- .markdownlint.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .markdownlint.json diff --git a/.markdownlint.json b/.markdownlint.json new file mode 100644 index 00000000..39e1e186 --- /dev/null +++ b/.markdownlint.json @@ -0,0 +1,10 @@ +{ + "default": true, + "line-length": { + "line_length": 100, + "tables": false + }, + "no-inline-html": { + "allowed_elements": ["br"] + } +}