mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-17 02:07:29 +08:00
13 lines
303 B
JavaScript
13 lines
303 B
JavaScript
|
|
module.exports = {
|
||
|
|
extends: ['@commitlint/config-conventional'],
|
||
|
|
rules: {
|
||
|
|
'type-enum': [
|
||
|
|
2,
|
||
|
|
'always',
|
||
|
|
['feat', 'fix', 'perf', 'refactor', 'docs', 'style', 'test', 'build', 'ci', 'chore', 'revert']
|
||
|
|
],
|
||
|
|
'subject-empty': [2, 'never'],
|
||
|
|
'type-empty': [2, 'never']
|
||
|
|
}
|
||
|
|
};
|