From b2c28aa906fcce406b01523e7b7eccd04e658984 Mon Sep 17 00:00:00 2001 From: Dafydd Jones Date: Wed, 11 Oct 2023 18:58:56 +0100 Subject: [PATCH] test(rstcheck): ignore Markdown-style links as false positives --- .rstcheck.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.rstcheck.cfg b/.rstcheck.cfg index 5383623..0daee68 100644 --- a/.rstcheck.cfg +++ b/.rstcheck.cfg @@ -1,4 +1,6 @@ [rstcheck] report=info ignore_language=rst -ignore_messages=(Duplicate (ex|im)plicit target.*|Hyperlink target ".*" is not referenced\.$) +# salt['config.get']('roles') is misidentified as a Markdown link. +# Ignore for now, but perhaps try to submit a fix upstream in rstcheck +ignore_messages=(Duplicate (ex|im)plicit target.*|Hyperlink target ".*" is not referenced\.$|\(rst\) Link is formatted in Markdown style\.)