-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
21 lines (18 loc) · 980 Bytes
/
Copy path.markdownlint.yaml
File metadata and controls
21 lines (18 loc) · 980 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# markdownlint configuration — https://github.com/DavidAnson/markdownlint
# Read by both the markdownlint VS Code extension and markdownlint-cli2.
default: true
# MD013 (line length): disabled. Markdown tables, URLs, and fenced code blocks
# cannot be wrapped to 80 columns, and GitHub/pub.dev render long prose fine.
# Every other rule stays on unless tuned below.
MD013: false
# CHANGELOG.md repeats conventional "Added", "Changed", and similar headings
# under separate release headings. Forbid duplicate sibling headings, but allow
# the conventional repeated subsection names across different releases.
MD024:
siblings_only: true
# MD060 (table column alignment) is intentionally disabled. It is the only rule
# with no auto-fixer, table source alignment renders identically on GitHub and
# pub.dev, and enforcing "aligned" was the sole cause of recurring table churn.
# Every other rule stays enabled and is auto-fixable via
# `markdownlint-cli2 --fix`.
MD060: false