-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
57 lines (43 loc) · 1.06 KB
/
.markdownlint.yaml
File metadata and controls
57 lines (43 loc) · 1.06 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
# markdownlint configuration for Babylon
# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Default state for all rules
default: true
# Line length - be generous for documentation
MD013:
line_length: 120
heading_line_length: 80
code_block_line_length: 120
code_blocks: false
tables: false
# Allow duplicate headings in different sections
MD024:
siblings_only: true
# Allow trailing punctuation in headings (for questions)
MD026:
punctuation: ".,;:!"
# Allow inline HTML (useful for special formatting)
MD033: false
# Allow bare URLs (common in docs)
MD034: false
# Allow emphasis as heading (used in some docs)
MD036: false
# First line should be a heading (not needed for all files)
MD041: false
# Code block style
MD046:
style: fenced
# Code fence style - use backticks
MD048:
style: backtick
# Allow multiple blank lines (can be useful for readability)
MD012:
maximum: 2
# Heading style - ATX preferred
MD003:
style: atx
# Unordered list style - consistent dashes
MD004:
style: dash
# List indentation
MD007:
indent: 2