-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.markdownlint-cli2.yaml
More file actions
44 lines (32 loc) · 1.1 KB
/
.markdownlint-cli2.yaml
File metadata and controls
44 lines (32 loc) · 1.1 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
# Markdown lint configuration for erpaval-plugin
config:
# Use ATX-style headings (#)
heading-style:
style: atx
# Disable line length — dprint handles wrapping
line-length: false
# Allow multiple top-level headings (SKILL.md has frontmatter + # heading)
single-h1: false
# Consistent unordered list markers
ul-style:
style: dash
# No trailing spaces
no-trailing-spaces: true
# Allow inline HTML (role files use <example> tags)
no-inline-html: false
# Allow bold text as section labels
no-emphasis-as-heading: false
# Allow duplicate headings (reference docs repeat common section names)
no-duplicate-heading: false
# Allow files to start without h1 (reference sub-documents)
first-line-heading: false
# Allow heading level increments > 1 (templates may start at h3)
heading-increment: false
# YAML frontmatter awareness
front-matter: null
# Allow blank lines inside blockquotes — GitHub-flavored "[!NOTE]" / "[!IMPORTANT]"
# callouts read more cleanly when separated by blank lines.
no-blanks-blockquote: false
globs:
- "skills/**/*.md"
- "agents/*.md"