]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Disable buggy markdownlint rule MD032
authorSimo Sorce <simo@redhat.com>
Fri, 21 Nov 2025 21:11:20 +0000 (16:11 -0500)
committerPauli <paul.dale@oracle.com>
Tue, 25 Nov 2025 21:50:25 +0000 (08:50 +1100)
The markdownlint rule MD032, which checks for blank lines surrounding lists,
is disabled because it is buggy and produces false positives. This change
prevents unnecessary build failures caused by incorrect linting.

Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/29004)

util/markdownlint.rb

index 2179f15999b5bc1fa99ff9f04157a2452f12274d..1b83b881d9207254a4f0a68d48f279781ec410fb 100644 (file)
@@ -26,4 +26,5 @@ exclude_rule 'MD025' # Multiple top level headers in the same document
 exclude_rule 'MD026' # Trailing punctuation in header
 exclude_rule 'MD029' # Ordered list item prefix
 exclude_rule 'MD030' # Spaces after list markers (default: 1!)
+exclude_rule 'MD032' # List surrounded by blanks check is buggy
 exclude_rule 'MD033' # Allow inline HTML (complex tables are impossible without it)