mirror of
https://github.com/nick-fields/retry.git
synced 2026-02-09 22:58:02 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
|
|
module.exports = {
|
||
|
|
extends: ['@commitlint/config-conventional'],
|
||
|
|
rules: {
|
||
|
|
'type-enum': [
|
||
|
|
2,
|
||
|
|
'always',
|
||
|
|
['feat', 'fix', 'docs', 'style', 'refactor', 'test', 'revert', 'patch', 'minor', 'major'],
|
||
|
|
],
|
||
|
|
},
|
||
|
|
};
|