Codebase list openssl / fa229d4
mdl: Don't enforce one space after list markers Common markdown styles usually show 4-column indents to separate the list marker and the list item text. That's a common template for writing new markdown files. On the other hand, we do have some files (such as CHANGES.md) where we use a different style. From a markdown perspective, both are perfectly OK, and there's no reason to enforce either. Therefore, the best thing is to exclude this particular rule. Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/18297) (cherry picked from commit 2046f80bc84deff5f3b8e3f8ffe54528bc684658) Richard Levitte 1 year, 11 months ago
1 changed file(s) with 1 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
2020 exclude_rule 'MD025' # Multiple top level headers in the same document
2121 exclude_rule 'MD026' # Trailing punctuation in header
2222 exclude_rule 'MD029' # Ordered list item prefix
23 exclude_rule 'MD030' # Spaces after list markers (default: 1!)