From: Simo Sorce Date: Fri, 21 Nov 2025 21:11:20 +0000 (-0500) Subject: Disable buggy markdownlint rule MD032 X-Git-Tag: 4.0-PRE-CLANG-FORMAT-WEBKIT~133 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5b761751b6c5f725ebb71eebcbbfdc96853eb427;p=thirdparty%2Fopenssl.git Disable buggy markdownlint rule MD032 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 Reviewed-by: Tomas Mraz Reviewed-by: Dmitry Belyavskiy Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/29004) --- diff --git a/util/markdownlint.rb b/util/markdownlint.rb index 2179f15999b..1b83b881d92 100644 --- a/util/markdownlint.rb +++ b/util/markdownlint.rb @@ -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)