Skip to content

Commit c09b3ed

Browse files
ooplesclaude
andcommitted
chore: add commitlint ignore for legacy work session planning commit
Add ignore pattern for the "Work Session Planning (#411)" commit which was merged to master before conventional commits were enforced. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent c4f6492 commit c09b3ed

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

commitlint.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export default {
2222
// Ignore manual merge commits (e.g., "merge: resolve conflicts...")
2323
(message) => /^merge:/i.test(message),
2424
// Ignore general merge commits containing "Merge" followed by common patterns
25-
(message) => /^Merge (origin|upstream|master|main)/i.test(message)
25+
(message) => /^Merge (origin|upstream|master|main)/i.test(message),
26+
// Ignore legacy commit from Work Session Planning PR (#411)
27+
(message) => /^Work Session Planning/.test(message)
2628
]
2729
};

0 commit comments

Comments
 (0)