-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.markdownlint.jsonc
More file actions
59 lines (42 loc) · 1.74 KB
/
Copy path.markdownlint.jsonc
File metadata and controls
59 lines (42 loc) · 1.74 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
// markdownlint config for claude-code-tips
//
// this repo is prompt-heavy -- agents, skills, and commands contain
// embedded markdown examples, compact tables, and bare code blocks.
// rules are tuned for this content type, not traditional docs.
{
// --- disabled: inappropriate for prompt-heavy content ---
// heading style -- skills use ATX (###) for deep nesting, setext only supports h1/h2
"MD003": false,
// line length -- long command examples, SQL queries, URLs
"MD013": false,
// inline HTML -- <img>, <details>, <summary>
"MD033": false,
// first line heading -- files start with frontmatter or comments
"MD041": false,
// bare URLs -- fine in a tips repo
"MD034": false,
// blank lines around lists -- too noisy in prompt templates
"MD032": false,
// fenced code blocks without language -- intentional in prompt templates
// (112 occurrences, all in agent/skill/command definitions)
"MD040": false,
// blanks around fences -- compact formatting in prompt files
"MD031": false,
// blanks around headings -- prompt templates use compact structure
"MD022": false,
// blanks around tables -- compact table formatting in prompts
"MD058": false,
// table column style -- compact pipe-delimited tables throughout
"MD060": false,
// unordered list indentation -- varies by content type
"MD007": false,
// ordered list marker style -- lists restart numbering in prompts
"MD029": false,
// emphasis instead of heading -- bold text as section markers is intentional
"MD036": false,
// spaces inside emphasis markers -- too strict for this content
"MD037": false,
// --- kept: these catch real issues ---
// duplicate headings -- allow in different sections
"MD024": { "siblings_only": true }
}