|
| 1 | +/** @type { import('cz-git').UserConfig } */ |
| 2 | +export default { |
| 3 | + rules: { |
| 4 | + // @see: https://commitlint.js.org/#/reference-rules |
| 5 | + }, |
| 6 | + prompt: { |
| 7 | + alias: { fd: "docs: fix typos" }, |
| 8 | + useEmoji: false, |
| 9 | + emojiAlign: "center", |
| 10 | + useAI: false, |
| 11 | + aiNumber: 1, |
| 12 | + themeColorCode: "", |
| 13 | + scopes: ["docs:c", "docs:cpp", "docs:development", "components:*"], |
| 14 | + allowCustomScopes: true, |
| 15 | + allowEmptyScopes: true, |
| 16 | + customScopesAlign: "bottom", |
| 17 | + customScopesAlias: "custom", |
| 18 | + emptyScopesAlias: "empty", |
| 19 | + upperCaseSubject: null, |
| 20 | + markBreakingChangeMode: false, |
| 21 | + allowBreakingChanges: ["feat", "fix"], |
| 22 | + breaklineNumber: 100, |
| 23 | + breaklineChar: "|", |
| 24 | + skipQuestions: [], |
| 25 | + issuePrefixes: [ |
| 26 | + { value: "closed", name: "closed: ISSUES has been processed" }, |
| 27 | + ], |
| 28 | + customIssuePrefixAlign: "top", |
| 29 | + emptyIssuePrefixAlias: "skip", |
| 30 | + customIssuePrefixAlias: "custom", |
| 31 | + allowCustomIssuePrefix: true, |
| 32 | + allowEmptyIssuePrefix: true, |
| 33 | + confirmColorize: true, |
| 34 | + scopeOverrides: undefined, |
| 35 | + defaultBody: "", |
| 36 | + defaultIssues: "", |
| 37 | + defaultScope: "", |
| 38 | + defaultSubject: "", |
| 39 | + enableMultipleScopes: true, |
| 40 | + scopeEnumSeparator: ",", |
| 41 | + }, |
| 42 | +}; |
0 commit comments