11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
|
|
module.exports = {
|
||
|
|
extends: ['@commitlint/config-conventional'],
|
||
|
|
rules: {
|
||
|
|
'type-enum': [
|
||
|
|
2,
|
||
|
|
'always',
|
||
|
|
['init', 'build', 'ci', 'chore', 'docs', 'feat', 'fix', 'perf', 'refactor', 'revert', 'style', 'test'],
|
||
|
|
],
|
||
|
|
},
|
||
|
|
};
|