chore: update commitlint config
parent
ca8d492b9a
commit
61a8c6f037
@ -1,3 +1,25 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
module.exports = { extends: ['@commitlint/config-angular'] };
|
module.exports = {
|
||||||
|
extends: ['@commitlint/config-angular'],
|
||||||
|
rules: {
|
||||||
|
'type-enum': [
|
||||||
|
2,
|
||||||
|
'always',
|
||||||
|
[
|
||||||
|
'breaking',
|
||||||
|
'build',
|
||||||
|
'chore',
|
||||||
|
'ci',
|
||||||
|
'docs',
|
||||||
|
'feat',
|
||||||
|
'fix',
|
||||||
|
'perf',
|
||||||
|
'refactor',
|
||||||
|
'revert',
|
||||||
|
'style',
|
||||||
|
'test',
|
||||||
|
],
|
||||||
|
],
|
||||||
|
},
|
||||||
|
};
|
||||||
|
Loading…
Reference in New Issue