Skip to content

Commit bf0a3e4

Browse files
committed
fix: revert regression -- restore working markdownlint ignores config
A later commit on this branch (1ccca81, applying orama PR #320 review 4837623699) replaced the working ignores-based MD013 exemption with the overrides/filter/combine schema already proven this session not to work against CI's actually-pinned markdownlint-cli2 v0.17.2 -- reintroducing the exact CI failure that had already been diagnosed and fixed. Restored the ignores-based config, verified against the exact CI-pinned tool version (markdownlint-cli2 v0.17.2, not the newer local default): SKILL.md, docs/LESSONS.md, and .agent/memory/semantic/DECISIONS.md all correctly exempted, 0 issues. 29/29 tests pass. Hygiene clean.
1 parent 1ba754e commit bf0a3e4

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

.markdownlint-cli2.jsonc

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,9 @@
1111
"stern": false
1212
}
1313
},
14-
"overrides": [
15-
{
16-
"filter": [
17-
"SKILL.md",
18-
"**/SKILL.md",
19-
"**/skills/**"
20-
],
21-
"config": {
22-
"MD013": false
23-
},
24-
"combine": "merge"
25-
}
14+
"ignores": [
15+
"**/SKILL.md",
16+
"**/LESSONS.md",
17+
"**/DECISIONS.md"
2618
]
2719
}

0 commit comments

Comments
 (0)