-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
30 lines (24 loc) · 859 Bytes
/
.markdownlint.yaml
File metadata and controls
30 lines (24 loc) · 859 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
29
30
# Markdownlint configuration
# See https://github.com/DavidAnson/markdownlint for rules
# Default state for all rules
default: true
# MD013/line-length – increase allowed length and keep table exceptions
MD013:
line_length: 250 # allow longer lines (e.g., long tables or code snippets)
heading_line_length: 250
code_block_line_length: 250
code_blocks: false
tables: false
headings: true
strict: false
# MD033/no-inline-html – keep allowed HTML elements
MD033:
allowed_elements: [br, p, details, summary]
# MD041/first-line-heading – disabled (first line may not be a top‑level heading)
MD041: false
# MD046/code-block-style – enforce fenced code blocks
MD046:
style: fenced
# **New**: Disable table column style warnings (MD060) which were causing many
# alignment errors across README and docs tables.
MD060: false