|
13 | 13 | 'use strict'; |
14 | 14 |
|
15 | 15 | module.exports = { |
16 | | - allowBreakingChanges: ["ast"], |
17 | | - allowCustomScopes: true, |
18 | | - scopes: [], |
19 | | - // sort type values in asc |
20 | | - types: [ |
21 | | - { value: "ast", name: "ast: init, migrate, add, etc" }, |
22 | | - { value: "break", name: "break: Changes that break the behaviour of the cli" }, |
23 | | - { value: "chore", name: "chore: Updating deps, docs, linting, etc" }, |
24 | | - { value: "cli", name: "cli: Core CLI things" }, |
25 | | - { value: "docs", name: "docs: Documentation" }, |
26 | | - { value: "feat", name: "feat: A new feature" }, |
27 | | - { value: "fix", name: "fix: Bugs, typos, etc" }, |
28 | | - { value: "misc", name: "misc: Other formats like tweaks and such" }, |
29 | | - { value: "tests", name: "tests: Tests, jest, etc" }, |
30 | | - ] |
| 16 | + allowBreakingChanges: ['ast'], |
| 17 | + allowCustomScopes: true, |
| 18 | + scopes: [], |
| 19 | + // sort type values in asc |
| 20 | + types: [ |
| 21 | + { value: 'ast', name: 'ast: create, migrate, add, etc' }, |
| 22 | + { value: 'break', name: 'break: Changes that break the behaviour of the cli' }, |
| 23 | + { value: 'chore', name: 'chore: Updating deps, docs, linting, etc' }, |
| 24 | + { value: 'cli', name: 'cli: Core CLI things' }, |
| 25 | + { value: 'docs', name: 'docs: Documentation' }, |
| 26 | + { value: 'feat', name: 'feat: A new feature' }, |
| 27 | + { value: 'fix', name: 'fix: Bugs, typos, etc' }, |
| 28 | + { value: 'misc', name: 'misc: Other formats like tweaks and such' }, |
| 29 | + { value: 'tests', name: 'tests: Tests, jest, etc' }, |
| 30 | + ], |
31 | 31 | }; |
0 commit comments