From 6a6a7f8ba68c50e742ea85e09dbec1d9c7908036 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Fri, 5 Jun 2026 09:56:13 +0200 Subject: [PATCH] Also ignore copilot-curate.instructions.md from markdownlint Follow-up to #8851: `.github/instructions/copilot-curate.instructions.md` is the second file produced by `gh copilot-curate` (alongside `AGENTS.md`). Its front-matter and dense plain-text skill catalog trigger 96 lint errors (MD041 first-line-h1, MD049 emphasis-style, MD038 spaces-in-code) that would all be wiped out on the next regeneration. Adding it to the markdownlint ignores keeps the lint job green without fighting the generator. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .markdownlint-cli2.jsonc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index 80761c4d7d..471f0b67dc 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -159,6 +159,7 @@ ".github/workflows/**/*.md", "**/AnalyzerReleases.*.md", // Auto-generated by `gh copilot-curate`; do not edit by hand. - "AGENTS.md" + "AGENTS.md", + ".github/instructions/copilot-curate.instructions.md" ] }