Skip to content

Commit d1a9a5c

Browse files
authored
Merge pull request #6 from Rotorsoft/ro/feature-5-configure-semantic-release-commit-messag
Configure semantic-release commit message line length limits
2 parents 91964ce + 3d02d75 commit d1a9a5c

2 files changed

Lines changed: 9 additions & 0 deletions

File tree

commitlint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,8 @@ export default {
2020
],
2121
"subject-case": [2, "always", "lower-case"],
2222
"header-max-length": [2, "always", 100],
23+
// Disable body/footer line length limits for semantic-release notes
24+
"body-max-line-length": [0, "always", Infinity],
25+
"footer-max-line-length": [0, "always", Infinity],
2326
},
2427
};

progress.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,9 @@ Each entry documents: date, feature, decisions, files changed, tests, and concer
1616
- 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
1717
- Decisions: Used pnpm-compatible husky v9, semantic-release v24 with standard plugins, commitlint strict mode for subject-case
1818
- Issues: None
19+
20+
[2026-02-05] #5 chore: Configure semantic-release commit message line length limits
21+
- Files: commitlint.config.js
22+
- Changes: Disabled body-max-line-length and footer-max-line-length rules to allow semantic-release notes and Co-Authored-By footers
23+
- Decisions: Set rules to severity 0 (disabled) rather than increasing limit to avoid arbitrary caps
24+
- Issues: None

0 commit comments

Comments
 (0)