mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2024-11-09 17:36:14 +03:00
2a6564c0a7
This reduces duplication, symlinks, and makes the configurations available by default for the linting tools.
39 lines
1009 B
YAML
39 lines
1009 B
YAML
---
|
|
###########################
|
|
###########################
|
|
## 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 #
|
|
###############
|
|
MD004: false # Unordered list style
|
|
MD007:
|
|
indent: 2 # Unordered list indentation
|
|
MD013:
|
|
line_length: 808 # Line length
|
|
MD024:
|
|
allow_different_nesting: true
|
|
MD026:
|
|
punctuation: ".,;:!。,;:" # List of not allowed
|
|
MD029: false # Ordered list item prefix
|
|
MD033: false # Allow inline HTML
|
|
MD036: false # Emphasis used instead of a heading
|
|
MD041: false # Allow file to start without h1
|
|
|
|
#################
|
|
# Rules by tags #
|
|
#################
|
|
blank_lines: false # Error on blank lines
|