-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
80 lines (60 loc) · 1.57 KB
/
Copy path.markdownlint.yaml
File metadata and controls
80 lines (60 loc) · 1.57 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
# Markdownlint Configuration
# Relaxed rules for documentation-focused repository
# Line length - disabled for documentation flexibility
MD013:
line_length: 999999
tables: false
code_blocks: false
# Inline HTML - allowed (needed for badges, GitHub-specific formatting)
MD033: false
# Table column style
# This repo contains many legacy tables and multiple formatting styles.
# Enforcing a single style creates large, noisy diffs.
MD060: false
# First line in file should be top-level heading - disabled
MD041: false
# Multiple top-level headings in the same document - allowed
MD025: false
# Multiple headings with the same content - allowed (common in docs)
MD024:
siblings_only: true
# Ordered list item prefix - consistent style
MD029:
style: ordered
# Code block style - use fenced code blocks
MD046:
style: fenced
# Emphasis style - use asterisks for consistency
MD049:
style: asterisk
# Strong style - use asterisks for consistency
MD050:
style: asterisk
# Heading style - ATX style (# Heading)
MD003:
style: atx
# Unordered list style - consistent dashes
MD004:
style: dash
# List indent - 2 spaces
MD007:
indent: 2
# Blanks around fences - require blank lines
MD031: true
MD032: true
# Blanks around headings - require blank lines
MD022:
lines_above: 1
lines_below: 1
# No trailing spaces
MD009: true
# No trailing punctuation in headings
MD026:
punctuation: ".,;:!"
# Proper link syntax
MD042: true
# Fenced code language - allow code blocks without language
MD040: false
# Emphasis as heading - allow for progressive disclosure patterns
MD036: false