mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 12:15:29 +00:00
24 lines
803 B
YAML
24 lines
803 B
YAML
# Filename: ~/.markdownlint.yaml
|
|
#
|
|
# Example: https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
|
|
|
|
# Default state for all rules
|
|
default: true
|
|
|
|
# Path to configuration file to extend
|
|
extends: null
|
|
|
|
# MD012/no-multiple-blanks : Multiple consecutive blank lines : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md012.md
|
|
MD012:
|
|
# Consecutive blank lines
|
|
maximum: 1
|
|
|
|
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md013.md
|
|
MD013: false
|
|
|
|
# MD024/no-duplicate-heading : Multiple headings with the same content : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md024.md
|
|
MD024: false
|
|
|
|
# MD033/no-inline-html : Inline HTML : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md033.md
|
|
MD033: false
|