blob: 598a9b5b6515fcb6901284044f5d09633e6ffcef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/ruby
# Enable all rules by default
all
# Extend line length, since each sentence should be on a separate line.
rule 'MD013', :line_length => 99999, :ignore_code_blocks => true
# Allow in-line HTML
exclude_rule 'MD033'
# Nested lists should be indented with two spaces.
rule 'MD007', :indent => 2
# Bash defaulting confuses this and now way to ignore code blocks
exclude_rule 'MD029'
|