-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy path.markdownlint-cli2.jsonc
More file actions
76 lines (76 loc) · 2.55 KB
/
.markdownlint-cli2.jsonc
File metadata and controls
76 lines (76 loc) · 2.55 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
67
68
69
70
71
72
73
74
75
76
// ArcKit markdownlint configuration
// Tuned for AI prompt files, templates, and documentation
{
"config": {
// Heading style: ATX (#)
"MD003": { "style": "atx" },
// List marker: dash
"MD004": { "style": "dash" },
// Disable line length — prompt files and tables have intentionally long lines
"MD013": false,
// Disable dollar-sign-before-commands — shell examples use $ prefix
"MD014": false,
// Disable no-duplicate-heading — commands reuse headings like "Instructions", "Process"
"MD024": false,
// Disable single-h1 — files with frontmatter + embedded examples
"MD025": false,
// Allow ? in heading punctuation
"MD026": { "punctuation": ".,;:!" },
// Disable no-blanks-blockquote — commands use blank lines in blockquotes
"MD028": false,
// Disable ordered-list-prefix — numbered steps use explicit numbering
"MD029": false,
// Disable no-inline-html — files use <br/>, <details>, <summary>
"MD033": false,
// Disable no-bare-urls — template placeholders and examples
"MD034": false,
// Disable no-emphasis-as-heading — bold text as structural markers in prompts
"MD036": false,
// Code fence language required
"MD040": true,
// Disable first-line-h1 — YAML frontmatter files
"MD041": false,
// Disable required-headings
"MD043": false,
// Disable proper-names
"MD044": false,
// Backtick code fences
"MD048": { "style": "backtick" },
// Asterisk emphasis
"MD049": { "style": "asterisk" },
// Asterisk strong
"MD050": { "style": "asterisk" },
// Disable link-fragments — template placeholders don't have valid anchors
"MD051": false,
// Disable reference-links-images
"MD052": false,
// Disable link-image-reference-definitions — unused definitions in templates
"MD053": false,
// Disable link-image-style
"MD054": false,
// Table pipe style: leading and trailing
"MD055": { "style": "leading_and_trailing" },
// Disable table-column-count
"MD056": false,
// Disable table-pipe-style (handled by MD055)
"MD058": false,
// Disable table-row-style
"MD059": false,
// Disable table-column-style
"MD060": false
},
"ignores": [
".codex/**",
".opencode/**",
"arckit-opencode/**",
"arckit-codex/commands/**",
"arckit-codex/prompts/**",
"arckit-codex/skills/**",
"arckit-gemini/skills/**",
"node_modules/**",
"docs/articles/**",
"docs/plans/**",
"docs/superpowers/plans/**",
"docs/superpowers/specs/**"
]
}