]> git.ipfire.org Git - thirdparty/openssl.git/blame - util/markdownlint.rb
apps & al : Fix various typos, repeated words, align some spelling to LDP.
[thirdparty/openssl.git] / util / markdownlint.rb
CommitLineData
4ef0ddc9
RS
1# markdownlint style rules for OpenSSL
2# See https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
3
4all
5
6# Use --- and === for H1 and H2.
7rule 'MD003', :style => :setext_with_atx
fb2cd91f
RL
8# Code blocks may be fenced or indented, both are OK...
9# but they must be consistent throughout each file.
10rule 'MD046', :style => :consistent
ec36534c
HL
11# Not possible to line-break tables.
12rule 'MD013', :tables => false
4ef0ddc9
RS
13
14# Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313
15exclude_rule 'MD007'
16
17exclude_rule 'MD004' # Unordered list style TODO(fix?)
18exclude_rule 'MD005' # Inconsistent indentation for list items at the same level
19exclude_rule 'MD006' # Consider starting bulleted lists at the beginning of the line
20exclude_rule 'MD014' # Dollar signs used before commands without showing output
915e7e75 21exclude_rule 'MD023' # Headers must start at the beginning of the line
4ef0ddc9
RS
22exclude_rule 'MD024' # Multiple headers with the same content
23exclude_rule 'MD025' # Multiple top level headers in the same document
915e7e75 24exclude_rule 'MD026' # Trailing punctuation in header
4ef0ddc9 25exclude_rule 'MD029' # Ordered list item prefix
2046f80b 26exclude_rule 'MD030' # Spaces after list markers (default: 1!)