mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
b4c84e09e2
- maximum length of commit message summary 72 characters (before 50) - drop rule for commit message summary to start with capital letter - AI generated commit message only for poor messages - updated version of pre-commit hook 'conventional-precommit-linter' - update prompt AI generated commit message
17 lines
307 B
JavaScript
17 lines
307 B
JavaScript
module.exports = {
|
|
gptStandardModelTokens: 4096,
|
|
minimumSummaryChars: 20,
|
|
maximumSummaryChars: 72,
|
|
maximumBodyLineChars: 100,
|
|
allowedTypes: [
|
|
"change",
|
|
"ci",
|
|
"docs",
|
|
"feat",
|
|
"fix",
|
|
"refactor",
|
|
"remove",
|
|
"revert",
|
|
],
|
|
};
|