diff options
author | Enji Cooper <ngie@FreeBSD.org> | 2025-05-07 21:18:24 +0000 |
---|---|---|
committer | Enji Cooper <ngie@FreeBSD.org> | 2025-05-07 22:37:22 +0000 |
commit | 29536654cc41bf41b92dc836c47496dc6fe0b00c (patch) | |
tree | 368a3c5b14e610bb5f6b71657f61a41e373eaf97 /util/markdownlint.rb | |
parent | 1c34280346af8284acdc0eae39496811d37df25d (diff) |
Diffstat (limited to 'util/markdownlint.rb')
-rw-r--r-- | util/markdownlint.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/util/markdownlint.rb b/util/markdownlint.rb index 51814c29f94e..2179f15999b5 100644 --- a/util/markdownlint.rb +++ b/util/markdownlint.rb @@ -12,6 +12,10 @@ rule 'MD046', :style => :consistent # Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313 exclude_rule 'MD007' +# Not possible to line-break tables (:tables => false) +# Not possible to line-break headers (currently cannot be selectively exempted) +exclude_rule 'MD013' + 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 @@ -22,3 +26,4 @@ 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 'MD033' # Allow inline HTML (complex tables are impossible without it) |