mirror of
https://github.com/ROCm/ROCm.git
synced 2026-02-19 02:34:19 -05:00
24 lines
487 B
Ruby
24 lines
487 B
Ruby
all
|
|
# Extend line length
|
|
rule 'MD013', :line_length => 99999
|
|
|
|
rule 'MD026', :punctuation => '.,;:!'
|
|
|
|
# Use "1. 2. 3."-style numbered lists instead of "1. 1. 1."
|
|
rule 'MD029', :style => :ordered
|
|
|
|
# Allow in-line HTML
|
|
exclude_rule 'MD033'
|
|
|
|
exclude_rule 'MD034'
|
|
|
|
exclude_rule 'MD041'
|
|
|
|
|
|
|
|
# False positives, see: https://github.com/markdownlint/markdownlint/issues/374
|
|
exclude_rule 'MD005'
|
|
|
|
# False positives, see: https://github.com/markdownlint/markdownlint/issues/313
|
|
exclude_rule 'MD007'
|