Skip to content

Commit

Permalink
util/markdownlint.rb: Add two rule exceptions: MD023 and MD026
Browse files Browse the repository at this point in the history
exclude_rule 'MD023' # Headers must start at the beginning of the line
exclude_rule 'MD026' # Trailing punctuation in header

Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from openssl#12109)
  • Loading branch information
DDvO committed Jul 5, 2020
1 parent c996f71 commit 915e7e7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/markdownlint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@
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 'MD023' # Headers must start at the beginning of the line
exclude_rule 'MD024' # Multiple headers with the same content
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

0 comments on commit 915e7e7

Please sign in to comment.