From e0fcfd582d38e10644f64e5b32ab4d182bf180f8 Mon Sep 17 00:00:00 2001 From: Rahim Date: Sat, 25 Oct 2025 10:12:34 -0700 Subject: [PATCH] chore(root): ignore linting commits starting with wip --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 3139ded0..0ba9dca5 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -5,7 +5,7 @@ export default { /** @param {string} message */ (message) => { const lower = message.toLowerCase().trim(); - return ['wip'].includes(lower); + return ['wip'].some(word => lower.startsWith(word)); }, ], rules: {