Barazo lexicon schemas and TypeScript types
barazo.forum
1export default {
2 extends: ['@commitlint/config-conventional'],
3 rules: {
4 'type-enum': [
5 2,
6 'always',
7 [
8 'build',
9 'chore',
10 'ci',
11 'docs',
12 'feat',
13 'fix',
14 'perf',
15 'refactor',
16 'revert',
17 'style',
18 'test',
19 'a11y',
20 'security',
21 ],
22 ],
23 'subject-case': [0],
24 },
25}