.mdl_style.rb 607 B

123456789101112131415161718192021
  1. # mdl rules https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
  2. # Import all default rules
  3. all
  4. # Only allow atx style headings (e.g. # H1 ## H2)
  5. rule 'MD003', :style => :atx
  6. # Only allow dashes in unordered lists
  7. rule 'MD004', :style => :dash
  8. # Enforce line length of 80 characters except in code blocks and tables
  9. rule 'MD013', :code_blocks => false, :tables => false
  10. # Ignore blockquotes separated only be a blank line. This is a limitation of
  11. # some markdown parsers, not markdown itself.
  12. exclude_rule 'MD028'
  13. # Allow bare URLs (i.e. without angle brackets)
  14. exclude_rule 'MD034'