You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.4 KiB
60 lines
1.4 KiB
--- |
|
|
|
# Default state for all rules |
|
default: true |
|
|
|
# MD003/heading-style/header-style - Heading style |
|
MD003: |
|
# Enforce the ATX-closed style of header |
|
style: "atx_closed" |
|
|
|
# MD004/ul-style - Unordered list style |
|
MD004: |
|
# Enforce dashes for unordered lists |
|
style: "dash" |
|
|
|
# MD013/line-length - Line length |
|
MD013: |
|
# Do not enforce for code blocks |
|
code_blocks: false |
|
# Do not enforce for tables |
|
tables: false |
|
|
|
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the |
|
# same content |
|
MD024: |
|
# Allow headers with the same content as long as they are not in the same |
|
# parent heading |
|
allow_different_nesting: true |
|
|
|
# MD029/ol-prefix - Ordered list item prefix |
|
MD029: |
|
# Enforce the `1.` style for ordered lists |
|
style: "one" |
|
|
|
# MD033/no-inline-html - Inline HTML |
|
MD033: |
|
# The h1 and img elements are allowed to permit header images |
|
allowed_elements: |
|
- h1 |
|
- img |
|
|
|
# MD035/hr-style - Horizontal rule style |
|
MD035: |
|
# Enforce dashes for horizontal rules |
|
style: "---" |
|
|
|
# MD046/code-block-style - Code block style |
|
MD046: |
|
# Enforce the fenced style for code blocks |
|
style: "fenced" |
|
|
|
# MD049/emphasis-style - Emphasis style should be consistent |
|
MD049: |
|
# Enforce asterisks as the style to use for emphasis |
|
style: "asterisk" |
|
|
|
# MD050/strong-style - Strong style should be consistent |
|
MD050: |
|
# Enforce asterisks as the style to use for strong |
|
style: "asterisk"
|
|
|