diff --git a/.cz-config.js b/.cz-config.js index e5a497b2436..2eb91ccdab0 100644 --- a/.cz-config.js +++ b/.cz-config.js @@ -16,15 +16,15 @@ module.exports = { allowBreakingChanges: ["ast"], allowCustomScopes: true, scopes: [], + // sort type values in asc types: [ - { value: "feat", name: "feat: A new feature" }, { value: "ast", name: "ast: init, migrate, add, etc" }, - { value: "tests", name: "tests: Tests, jest, binTestCases, etc" }, - { value: "docs", name: "docs: Documentation" }, - { value: "deps", name: "deps: Dependency bumps only" }, + { value: "chore", name: "chore: Updating deps, docs, linting, etc" }, { value: "cli", name: "cli: Core CLI things" }, + { value: "docs", name: "docs: Documentation" }, + { value: "feat", name: "feat: A new feature" }, + { value: "fix", name: "fix: Bugs, typos, etc" }, { value: "misc", name: "misc: Other formats like tweaks and such" }, - { value: "chore", name: "chore: Updating docs, linting, etc" }, - { value: "fix", name: "bugs, typos, etc" } + { value: "tests", name: "tests: Tests, jest, binTestCases, etc" } ] };