Files
copilotkit__copilotkit/commitlint.config.js
Jordan Ritter 966c8901b3 fix: raise commitlint header-max-length from 100 to 120
GitHub merge commits append " (#NNNN)" to the header, and scoped
conventional prefixes like "fix(runtime): ..." consume significant
characters. 100 is too tight for this combination.
2026-03-06 11:09:20 -08:00

11 lines
344 B
JavaScript

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [0],
// GitHub merge commits append " (#NNNN)" which eats 8+ chars.
// With scoped conventional prefixes like "fix(runtime): ...",
// 100 chars is too tight. 120 gives enough room.
'header-max-length': [2, 'always', 120],
},
};