mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
966c8901b3
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.
11 lines
344 B
JavaScript
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],
|
|
},
|
|
};
|