2019-10-21 12:05:55 -04:00
|
|
|
---
|
|
|
|
###########################
|
|
|
|
###########################
|
|
|
|
## Markdown Linter rules ##
|
|
|
|
###########################
|
|
|
|
###########################
|
|
|
|
|
|
|
|
# Linter rules doc:
|
|
|
|
# - https://github.com/DavidAnson/markdownlint
|
|
|
|
#
|
|
|
|
# Note:
|
|
|
|
# To comment out a single error:
|
|
|
|
# <!-- markdownlint-disable -->
|
|
|
|
# any violations you want
|
|
|
|
# <!-- markdownlint-restore -->
|
|
|
|
#
|
|
|
|
|
|
|
|
###############
|
|
|
|
# Rules by id #
|
|
|
|
###############
|
2024-08-15 04:21:26 -04:00
|
|
|
MD004: false # Unordered list style
|
2019-10-21 12:05:55 -04:00
|
|
|
MD007:
|
2024-08-15 04:21:26 -04:00
|
|
|
indent: 2 # Unordered list indentation
|
2019-10-21 12:05:55 -04:00
|
|
|
MD013:
|
2024-08-15 04:21:26 -04:00
|
|
|
line_length: 400 # Line length 80 is far too short
|
2019-10-21 12:05:55 -04:00
|
|
|
MD026:
|
2024-08-15 04:21:26 -04:00
|
|
|
punctuation: ".,;:!。,;:" # List of not allowed
|
|
|
|
MD029: false # Ordered list item prefix
|
|
|
|
MD033: false # Allow inline HTML
|
|
|
|
MD036: false # Emphasis used instead of a heading
|
2019-10-21 12:05:55 -04:00
|
|
|
|
|
|
|
#################
|
|
|
|
# Rules by tags #
|
|
|
|
#################
|
2024-08-15 04:21:26 -04:00
|
|
|
blank_lines: false # Error on blank lines
|