-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
55 lines (55 loc) · 1.77 KB
/
Copy path.markdownlint-cli2.jsonc
File metadata and controls
55 lines (55 loc) · 1.77 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
// Markdownlint-cli2 config for Grok Imagine Cinematic Studio.
// Soft hygiene: CI runs lint with continue-on-error. Style rules that flood
// annotations on Role Cards, skill refs, prompt dumps, and example Bibles
// are disabled. Structural issues (broken refs, empty links) stay on.
{
"config": {
"default": true,
// Heading increment jumps in skill/agent docs
"MD001": false,
// Trailing spaces in tables / templates
"MD009": false,
// Double blanks in Role Cards / release notes
"MD012": false,
// Long prompt lines, tables, URLs, DNA blocks
"MD013": false,
// Dense Role Cards without blank lines around headings
"MD022": false,
// Repeated section titles across agent docs
"MD024": false,
// Fenced blocks without surrounding blanks
"MD031": false,
// Compact cheat sheets and lists
"MD032": false,
// GitHub callouts / details / badges
"MD033": false,
// Emphasis used as pseudo-headings
"MD036": false,
// Spaces inside emphasis in MASTER_PROMPT-style copy
"MD037": false,
// Unlabeled fences (prompt dumps, inject blocks)
"MD040": false,
// Stubs / partials without leading H1
"MD041": false,
// Missing final newline in examples
"MD047": false,
// Example tables with uneven columns
"MD056": false,
// Tables without surrounding blanks in dense cards
"MD058": false,
// Restarted / continued ordered lists in long docs
"MD029": false,
// Bare URLs in AGENTS/README canonical links
"MD034": false,
// Multiple H1s in long official docs
"MD025": false,
// Table pipe alignment (markdownlint ≥0.41 / action v24)
"MD060": false
},
"ignores": [
"node_modules/**",
".venv/**",
"artifacts/**",
"**/__pycache__/**"
]
}