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 1/2] 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'], }; From 29edfa7f5688e0ac0848b0490454b3b11b3f9602 Mon Sep 17 00:00:00 2001 From: Sidharth Vinod Date: Wed, 13 Aug 2025 10:03:26 -0700 Subject: [PATCH 2/2] Apply suggestion from @sidharthv96 --- .lintstagedrc.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.lintstagedrc.mjs b/.lintstagedrc.mjs index 3c5b860b3..951bc889c 100644 --- a/.lintstagedrc.mjs +++ b/.lintstagedrc.mjs @@ -7,6 +7,6 @@ export default { 'prettier --write', ], '.cspell/*.txt': ['tsx scripts/fixCSpell.ts'], - '**/*.md': ['pnpm dlx cspell'], + '**/*.md': ['pnpm cspell'], '**/*.jison': ['pnpm -w run lint:jison'], };