mirror of
https://github.com/ycnmhd/obsidian-lineage.git
synced 2026-07-22 10:10:28 +00:00
24 lines
514 B
JavaScript
24 lines
514 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'type-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'feat',
|
|
'fix',
|
|
'docs',
|
|
'style',
|
|
'refactor',
|
|
'test',
|
|
'chore',
|
|
'perf',
|
|
'ci',
|
|
'build',
|
|
// custom
|
|
'tweak',
|
|
'enhance',
|
|
],
|
|
],
|
|
},
|
|
};
|