From fbc936bf40dd2bb802ebdeea7927da134fcb5db1 Mon Sep 17 00:00:00 2001 From: Keimpe de Jong Date: Wed, 29 Oct 2025 04:50:21 +0000 Subject: [PATCH] update to fix 830: add CommonMark-compliant markdown formatting rules --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index cb128d06..b4d17b72 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,8 @@ "install:bmad": "node tools/cli/bmad-cli.js install", "lint": "eslint . --ext .js,.cjs,.mjs,.yaml --max-warnings=0", "lint:fix": "eslint . --ext .js,.cjs,.mjs,.yaml --fix", - "lint:md": "markdownlint --config .patch/830/.markdownlint.json --rules .patch/830/markdownlint-rules/table-blank-lines.js docs bmad src", + "lint:md": "npm run check:md:all", + "pre-release": "npm run format:check && npm run lint && npm test && npm run validate:schemas && npm run validate:bundles && npm run check:md:all", "prepare": "husky", "rebundle": "node tools/cli/bundlers/bundle-web.js rebundle", "release:major": "gh workflow run \"Manual Release\" -f version_bump=major",