Follow-up to #13907.
CLAUDE.local.md is rendered as a project page during quarto render. It is not covered by the ignore patterns added in #13907.
CLAUDE.local.md is a standard Claude Code configuration file (local overrides, typically gitignored). AGENTS.local.md serves the same role as a community convention for agents.md.
The current ignore patterns in projectHiddenIgnoreGlob match only the exact filenames:
.concat(["**/CLAUDE.md"]) // Anthropic claude code file
.concat(["**/AGENTS.md"]) // https://agents.md/
We could extend these to also cover .local variants:
.concat(["**/CLAUDE.md", "**/CLAUDE.local.md"])
.concat(["**/AGENTS.md", "**/AGENTS.local.md"])