-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.markdownlint.yaml
More file actions
45 lines (32 loc) · 1.11 KB
/
Copy path.markdownlint.yaml
File metadata and controls
45 lines (32 loc) · 1.11 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
# Markdownlint configuration for BMILD
default: true
# MD007/ul-indent: Standard 2-space indentation for unordered lists
MD007:
indent: 2
# MD024/no-duplicate-heading: Changelogs repeat heading names per version
MD024:
siblings_only: true
# MD013/line-length: Prompts and specs often have long lines
MD013: false
# MD026/no-trailing-punctuation: Headings in documentation often have punctuation
MD026: false
# MD032/blanks-around-lists: Relax blanks around lists (avoids issues in custom HTML tags)
MD032: false
# MD033/no-inline-html: Personas use HTML badges and symbols
MD033: false
# MD036/emphasis-as-heading: Repo style choice
MD036: false
# MD038/no-space-in-code: Relax spaces inside code spans (e.g. ` - `)
MD038: false
# MD040/fenced-code-language: Relax language tags for nested/template examples
MD040: false
# MD041/first-line-h1: Expect frontmatter, not h1
MD041: false
# MD046/code block style: Expect fenced, not indented
MD046:
style: fenced
# MD049/emphasis style: Expect asterisk, not underscore
MD049:
style: asterisk
# MD060/table-column-style: Allow mixed padded/compact table columns
MD060: false