Files
landing/.cz.json

48 lines
1.7 KiB
JSON
Raw Normal View History

{
"path": "cz-git",
"useEmoji": false,
"types": [
{ "value": "feat", "name": "feat: A new feature" },
{ "value": "fix", "name": "fix: A bug fix" },
{ "value": "docs", "name": "docs: Documentation only changes" },
{
"value": "style",
"name": "style: Code style changes (formatting, semicolons, etc.)"
},
{
"value": "refactor",
"name": "refactor: Code refactoring (no feature or bug fix)"
},
{ "value": "perf", "name": "perf: Performance improvements" },
{ "value": "test", "name": "test: Adding or updating tests" },
{
"value": "build",
"name": "build: Build system or external dependencies"
},
{ "value": "ci", "name": "ci: CI/CD configuration changes" },
{
"value": "chore",
"name": "chore: Other changes (don't modify src/test)"
},
{ "value": "revert", "name": "revert: Revert a previous commit" }
],
"scopes": [
{ "value": "page", "name": "page: Page content/layout" },
{ "value": "style", "name": "style: Styling/CSS changes" },
{ "value": "config", "name": "config: Configuration changes" },
{ "value": "deps", "name": "deps: Dependency updates" }
],
"allowCustomScopes": true,
"allowEmptyScopes": false,
"customScopesAlign": "bottom",
"upperCaseSubject": false,
"markBreakingChangeMode": false,
"allowBreakingChanges": ["feat", "fix"],
"breaklineNumber": 100,
"breaklineChar": "|",
"confirmColorize": true,
"maxHeaderLength": 100,
"maxSubjectLength": 100,
"minSubjectLength": 3
}