Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,8 @@ export default {
],
"subject-case": [2, "always", "lower-case"],
"header-max-length": [2, "always", 100],
// Disable body/footer line length limits for semantic-release notes
"body-max-line-length": [0, "always", Infinity],
"footer-max-line-length": [0, "always", Infinity],
},
};
6 changes: 6 additions & 0 deletions progress.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ Each entry documents: date, feature, decisions, files changed, tests, and concer
- Changes: Configured semantic-release with changelog/npm/git plugins, added commitlint with conventional commits, set up husky commit-msg hook, created CI/release workflows, wrote comprehensive README and AGENT.md
- Decisions: Used pnpm-compatible husky v9, semantic-release v24 with standard plugins, commitlint strict mode for subject-case
- Issues: None

[2026-02-05] #5 chore: Configure semantic-release commit message line length limits
- Files: commitlint.config.js
- Changes: Disabled body-max-line-length and footer-max-line-length rules to allow semantic-release notes and Co-Authored-By footers
- Decisions: Set rules to severity 0 (disabled) rather than increasing limit to avoid arbitrary caps
- Issues: None