blob: f7388180f96ceb94141d26a31f1dceb0726ee2a3 [file] [log] [blame]
Zack Williamsbe0b2c72018-01-25 14:48:38 -07001# use all rules
2all
3
Zack Williams60d5a952018-01-30 12:07:01 -07004# Indent lists with 4 spaces
Zack Williamsbe0b2c72018-01-25 14:48:38 -07005rule 'MD007', :indent => 4
6
7# Don't enforce line length limitations within code blocks and tables
8rule 'MD013', :code_blocks => false, :tables => false
9
Zack Williams60d5a952018-01-30 12:07:01 -070010# Numbered lists should have the correct order
Zack Williamsbe0b2c72018-01-25 14:48:38 -070011rule 'MD029', :style => "ordered"
12
Zack Williams60d5a952018-01-30 12:07:01 -070013# Allow ! and ? as trailing punctuation in headers
14rule 'MD026', :punctuation => '.,;:'
15