Zack Williams | be0b2c7 | 2018-01-25 14:48:38 -0700 | [diff] [blame] | 1 | # use all rules |
| 2 | all |
| 3 | |
Zack Williams | 60d5a95 | 2018-01-30 12:07:01 -0700 | [diff] [blame] | 4 | # Indent lists with 4 spaces |
Zack Williams | be0b2c7 | 2018-01-25 14:48:38 -0700 | [diff] [blame] | 5 | rule 'MD007', :indent => 4 |
| 6 | |
| 7 | # Don't enforce line length limitations within code blocks and tables |
| 8 | rule 'MD013', :code_blocks => false, :tables => false |
| 9 | |
Zack Williams | 60d5a95 | 2018-01-30 12:07:01 -0700 | [diff] [blame] | 10 | # Numbered lists should have the correct order |
Zack Williams | be0b2c7 | 2018-01-25 14:48:38 -0700 | [diff] [blame] | 11 | rule 'MD029', :style => "ordered" |
| 12 | |
Zack Williams | 60d5a95 | 2018-01-30 12:07:01 -0700 | [diff] [blame] | 13 | # Allow ! and ? as trailing punctuation in headers |
| 14 | rule 'MD026', :punctuation => '.,;:' |
| 15 | |