mirror of
https://github.com/openssl/openssl.git
synced 2024-12-03 05:41:46 +08:00
43a70f0202
The main fixes were errors in itemized lists "*)" instead of "*" Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre@ncp-e.com> (Merged from https://github.com/openssl/openssl/pull/11770)
21 lines
832 B
Ruby
21 lines
832 B
Ruby
# markdownlint style rules for OpenSSL
|
|
# See https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
|
|
|
|
all
|
|
|
|
# Use --- and === for H1 and H2.
|
|
rule 'MD003', :style => :setext_with_atx
|
|
# Code blocks are indented
|
|
rule 'MD046', :style => :indented
|
|
|
|
# Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313
|
|
exclude_rule 'MD007'
|
|
|
|
exclude_rule 'MD004' # Unordered list style TODO(fix?)
|
|
exclude_rule 'MD005' # Inconsistent indentation for list items at the same level
|
|
exclude_rule 'MD006' # Consider starting bulleted lists at the beginning of the line
|
|
exclude_rule 'MD014' # Dollar signs used before commands without showing output
|
|
exclude_rule 'MD024' # Multiple headers with the same content
|
|
exclude_rule 'MD025' # Multiple top level headers in the same document
|
|
exclude_rule 'MD029' # Ordered list item prefix
|