-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
66 lines (52 loc) · 1.2 KB
/
.markdownlint.yaml
File metadata and controls
66 lines (52 loc) · 1.2 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
# Markdownlint configuration for GraphBit
# https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md
# Default state for all rules
default: true
# Rule customizations
MD003:
# Header style - consistent
style: atx
MD007:
# Unordered list indentation - 2 spaces
indent: 2
MD009:
# Trailing spaces - allow 2 trailing spaces for line breaks
br_spaces: 2
MD013:
# Line length - allow up to 150, but disable for code blocks and tables
line_length: 150
code_blocks: false
tables: false
headings: false
MD024: false
# # Multiple headers with the same content - allow duplicates in different sections
# allow_different_nesting: true
MD026:
# Trailing punctuation in headers - allow question marks
punctuation: .,;:!
MD029:
# Ordered list item prefix - use ordered numbers
style: ordered
MD033:
# Inline HTML - allow for necessary HTML elements
# allowed_elements: [br, sub, sup, img, a, details, summary, div, p, h1]
allowed_elements:
- br
- sub
- sup
- img
- a
- details
- summary
- div
- p
- h1
- b
MD034: false
MD036: false
MD046:
# Code block style - fenced code blocks
style: fenced
MD048:
# Code fence style - backticks
style: backtick