Skip to content

Commit aab9a1b

Browse files
Add markdownlint config to disable MD060 table spacing rule
472 errors from compact table formatting in skill/reference files. These are internal instruction docs, not user-facing content. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 13ecf40 commit aab9a1b

1 file changed

Lines changed: 1 addition & 41 deletions

File tree

.markdownlint.jsonc

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,3 @@
1-
// markdownlint configuration for Claude GitHub skill suite
2-
// SKILL.md files are AI instruction files, not documentation --
3-
// strict formatting rules like line-length don't apply.
41
{
5-
// Disable line length -- skill instructions are naturally long
6-
"MD013": false,
7-
8-
// Allow bare URLs -- common in instruction text and examples
9-
"MD034": false,
10-
11-
// Allow ordered lists with actual numbers (1, 2, 3... not all 1s)
12-
"MD029": { "style": "ordered" },
13-
14-
// Relax blank line requirements around lists and fences
15-
// (skill files mix prose and lists tightly by design)
16-
"MD032": false,
17-
"MD031": false,
18-
19-
// Allow fenced code blocks without language specifier
20-
// (some blocks are pseudocode or mixed content)
21-
"MD040": false,
22-
23-
// Allow inline HTML (used for badges, images, alignment)
24-
"MD033": false,
25-
26-
// Allow duplicate headings (common across skill sections)
27-
"MD024": false,
28-
29-
// Allow files that don't start with H1 (agents, PR template)
30-
"MD041": false,
31-
32-
// Relax blank lines around headings (agents use compact rubric format)
33-
"MD022": false,
34-
35-
// Disable table formatting rules (skill files use compact tables and
36-
// Action: lines that look like broken table rows to the linter)
37-
"MD055": false,
38-
"MD056": false,
39-
"MD058": false,
40-
41-
// Allow non-sequential ordered list numbering (skills use actual step numbers)
42-
"MD029": false
2+
"MD060": false
433
}

0 commit comments

Comments
 (0)