From 54f874656b94d3ef9224feaf92baa3c8ffd818e3 Mon Sep 17 00:00:00 2001 From: Charlie Voiselle <464492+angrycub@users.noreply.github.com> Date: Tue, 22 Oct 2019 16:39:10 -0400 Subject: [PATCH] Added a markdownlintrc This will help us more quickly errorcheck the website for non-conforming markdown using https://github.com/igorshubovych/markdownlint-cli --- website/.markdownlintrc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 website/.markdownlintrc diff --git a/website/.markdownlintrc b/website/.markdownlintrc new file mode 100644 index 000000000..7a39acfbd --- /dev/null +++ b/website/.markdownlintrc @@ -0,0 +1,12 @@ +{ + "default": true, + "MD003": { "style": "atx" }, + "MD004": { "style": "dash" }, + "MD007": { "indent": 2 }, + "MD013": { "code_blocks": false }, + "MD033": { "allowed_elements": ["a"] }, + "MD044": { "names": [ + "HashiCorp", + "JavaScript" + ]} +}