chore(root): ignore linting commits starting with wip

This commit is contained in:
Rahim
2025-10-25 10:12:34 -07:00
parent 22d9cb64f2
commit e0fcfd582d
+1 -1
View File
@@ -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: {