-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
28 lines (22 loc) · 978 Bytes
/
.markdownlint.yaml
File metadata and controls
28 lines (22 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# All rules enabled by default
default: true
# MD013 - Line length
# Disabled: tables, long links, and mermaid blocks frequently exceed 80 chars
MD013: false
# MD033 - Inline HTML
# Disabled: Azure DevOps mermaid syntax (:::mermaid / :::) is parsed as HTML
MD033: false
# MD041 - First line in file should be a top-level heading
# Disabled: agent files and instructions start with YAML frontmatter (---)
MD041: false
# MD060 - Table column style
# Disabled: "compact" style used for tables with few columns, "pipe" for tables with many columns.
# "pipe" style is more readable for wide tables.
MD060: false
# MD032 - Lists should be surrounded by blank lines
# Disabled: in some cases, such as lists inside tables or code blocks, blank lines are not necessary or desirable.
MD032: false
# MD024 - No duplicate headings
# siblings_only: allow identical headings under different parents (e.g., "Authentication" under "Copilot CLI" and "VS Code")
MD024:
siblings_only: true