Home | History | Annotate | Line # | Download | only in util
      1  1.1  christos # markdownlint style rules for OpenSSL
      2  1.1  christos # See https://github.com/markdownlint/markdownlint/blob/master/docs/RULES.md
      3  1.1  christos 
      4  1.1  christos all
      5  1.1  christos 
      6  1.1  christos # Use --- and === for H1 and H2.
      7  1.1  christos rule 'MD003', :style => :setext_with_atx
      8  1.1  christos # Code blocks may be fenced or indented, both are OK...
      9  1.1  christos # but they must be consistent throughout each file.
     10  1.1  christos rule 'MD046', :style => :consistent
     11  1.1  christos 
     12  1.1  christos # Bug in mdl, https://github.com/markdownlint/markdownlint/issues/313
     13  1.1  christos exclude_rule 'MD007'
     14  1.1  christos 
     15  1.1  christos # Not possible to line-break tables (:tables => false)
     16  1.1  christos # Not possible to line-break headers (currently cannot be selectively exempted)
     17  1.1  christos exclude_rule 'MD013'
     18  1.1  christos 
     19  1.1  christos exclude_rule 'MD004' # Unordered list style TODO(fix?)
     20  1.1  christos exclude_rule 'MD005' # Inconsistent indentation for list items at the same level
     21  1.1  christos exclude_rule 'MD006' # Consider starting bulleted lists at the beginning of the line
     22  1.1  christos exclude_rule 'MD014' # Dollar signs used before commands without showing output
     23  1.1  christos exclude_rule 'MD023' # Headers must start at the beginning of the line
     24  1.1  christos exclude_rule 'MD024' # Multiple headers with the same content
     25  1.1  christos exclude_rule 'MD025' # Multiple top level headers in the same document
     26  1.1  christos exclude_rule 'MD026' # Trailing punctuation in header
     27  1.1  christos exclude_rule 'MD029' # Ordered list item prefix
     28  1.1  christos exclude_rule 'MD030' # Spaces after list markers (default: 1!)
     29  1.1  christos exclude_rule 'MD033' # Allow inline HTML (complex tables are impossible without it)
     30