10 lines
318 B
JavaScript
10 lines
318 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [2, 'always', ['feat', 'fix', 'chore', 'docs', 'style', 'refactor', 'test', 'build', 'ci', 'revert', 'perf']],
|
|
'scope-empty': [2, 'never'],
|
|
'scope-case': [0],
|
|
'body-max-line-length': [2, 'always', 150],
|
|
},
|
|
};
|