You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
387 B
9 lines
387 B
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
// Downgrade strict case rules to warnings (level 1) instead of errors (level 2)
|
|
// This eliminates red error messages while maintaining helpful guidance
|
|
'subject-case': [1, 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case']],
|
|
'subject-full-stop': [1, 'never', '.'],
|
|
}
|
|
};
|
|
|