mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
25 lines
435 B
JavaScript
25 lines
435 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
// TODO Add Scope Enum Here
|
|
// 'scope-enum': [2, 'always', ['yourscope', 'yourscope']],
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat',
|
|
'fix',
|
|
'docs',
|
|
'chore',
|
|
'style',
|
|
'refactor',
|
|
'ci',
|
|
'test',
|
|
'perf',
|
|
'revert',
|
|
'vercel',
|
|
],
|
|
],
|
|
},
|
|
};
|