41 lines
1.5 KiB
JSON
41 lines
1.5 KiB
JSON
// markdownlint-cli2 configuration — ai-coding-skills (M2)
|
|
//
|
|
// This file controls which files are linted and which are ignored.
|
|
// The markdownlint *rules* are configured in .markdownlint.jsonc (root) and
|
|
// skills/.markdownlint.jsonc (agent-facing skill files).
|
|
//
|
|
// Scope: README.md, docs/, and canonical SKILL.md files.
|
|
// Excluded: all node_modules, generated agent-variant directories, pi-package.
|
|
{
|
|
// Glob patterns for which files to lint
|
|
"globs": [
|
|
"README.md",
|
|
"docs/**/*.md",
|
|
// Canonical skill files only — agent variants are excluded below
|
|
"skills/atlassian/shared/**/*.md",
|
|
"skills/create-plan/**/*.md",
|
|
"skills/do-task/**/*.md",
|
|
"skills/implement-plan/**/*.md",
|
|
"skills/reviewer-runtime/**/*.md",
|
|
"skills/web-automation/codex/**/*.md",
|
|
"skills/web-automation/pi/**/*.md",
|
|
"skills/web-automation/claude-code/SKILL.md",
|
|
"skills/web-automation/cursor/SKILL.md",
|
|
"skills/web-automation/opencode/SKILL.md",
|
|
"skills/atlassian/codex/SKILL.md",
|
|
"skills/atlassian/claude-code/SKILL.md",
|
|
"skills/atlassian/cursor/SKILL.md",
|
|
"skills/atlassian/opencode/SKILL.md",
|
|
"skills/atlassian/pi/SKILL.md"
|
|
],
|
|
|
|
// Ignore patterns — always exclude node_modules, generated artefacts, and canonical _source dirs
|
|
"ignores": [
|
|
"**/node_modules/**",
|
|
"pi-package/**",
|
|
// Canonical source directories — contain per-agent source with relative links
|
|
// calibrated to their generated location (one level up); exclude from linting.
|
|
"skills/**/_source/**"
|
|
]
|
|
}
|