From 17142ef8d7af7a2a1714f87a02f085b38539bc7f Mon Sep 17 00:00:00 2001 From: Krishna Upadhyay <24423580+kriss-u@users.noreply.github.com> Date: Mon, 4 Aug 2025 20:45:20 -0500 Subject: [PATCH] chore: run cspell on lint staged for markdown files [skip ci] --- .lintstagedrc.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/.lintstagedrc.mjs b/.lintstagedrc.mjs index 86af4f513..3c5b860b3 100644 --- a/.lintstagedrc.mjs +++ b/.lintstagedrc.mjs @@ -7,5 +7,6 @@ export default { 'prettier --write', ], '.cspell/*.txt': ['tsx scripts/fixCSpell.ts'], + '**/*.md': ['pnpm dlx cspell'], '**/*.jison': ['pnpm -w run lint:jison'], };