nicholaswilde_recipes/.markdownlint.yaml
Nicholas Wilde bbbc990bb0
Add linters
Signed-off-by: Nicholas Wilde <ncwilde43@gmail.com>
2022-05-10 14:19:09 +00:00

19 lines
535 B
YAML

---
# https://github.com/DavidAnson/markdownlint/blob/main/schema/.markdownlint.yaml
# MD007/ul-indent - Unordered list indentation
MD007:
indent: 4
# MD013/line-length - Line length
MD013:
line_length: 120
code_blocks: false
tables: false
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
# Only check sibling headings
allow_different_nesting: true
# Only check sibling headings
siblings_only: true
# MD046/code-block-style - Disable because of Admonitions
MD046: false