From 4f5b617ae7313d1f52eeb4a05850f66d7195f7fd Mon Sep 17 00:00:00 2001 From: Daniel Farrell Date: Fri, 25 Jun 2021 16:39:44 -0400 Subject: [PATCH] Ignore raw URLs in MDlint pending helm-docs bugfix The maintainers table generated by helm-docs includes a raw URL in Markdown, which fails markdownlint. I sent a PR upstream to fix the root of the issue, but for now we have to disable this linter rule. Signed-off-by: Daniel Farrell --- .markdownlint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.markdownlint.yml b/.markdownlint.yml index 78bd0e4..6543e3a 100644 --- a/.markdownlint.yml +++ b/.markdownlint.yml @@ -10,3 +10,7 @@ line-length: no-inline-html: allowed_elements: - span + +# Temporary while helm-docs has a bug where maintainer URLs are used raw in MD +# Waiting on: https://github.com/norwoodj/helm-docs/pull/102 +no-bare-urls: false