From e2b5db611410eecc18b0ac987bdf197850560839 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amaury=20Lev=C3=A9?= Date: Fri, 5 Jun 2026 09:38:39 +0200 Subject: [PATCH] Ignore auto-generated AGENTS.md in markdownlint AGENTS.md is generated by 'gh copilot-curate' and uses underscore emphasis (_skill_, _agent_) plus an H2 first heading. Editing it by hand would be lost on the next regeneration, so add it to the ignore list alongside the other auto-managed paths. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .markdownlint-cli2.jsonc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.markdownlint-cli2.jsonc b/.markdownlint-cli2.jsonc index 81c2df3643..80761c4d7d 100644 --- a/.markdownlint-cli2.jsonc +++ b/.markdownlint-cli2.jsonc @@ -157,6 +157,8 @@ ".agents/skills/**/*.md", // GitHub agentic workflow sources (compiled by `gh aw compile`) ".github/workflows/**/*.md", - "**/AnalyzerReleases.*.md" + "**/AnalyzerReleases.*.md", + // Auto-generated by `gh copilot-curate`; do not edit by hand. + "AGENTS.md" ] }