Skip to content

Commit

Permalink
fix: move commit messages to their own versionrc file
Browse files Browse the repository at this point in the history
  • Loading branch information
gyurielf committed Jan 5, 2023
1 parent 88ff762 commit 99a2399
Show file tree
Hide file tree
Showing 8 changed files with 813 additions and 632 deletions.
67 changes: 67 additions & 0 deletions .versionrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"skip": {
"tag": true
},
"types": [
{
"type": "chore",
"section": "Others (chore)",
"hidden": false
},
{
"type": "revert",
"section": "Reverts",
"hidden": false
},
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "improvement",
"section": "Feature Improvements",
"hidden": false
},
{
"type": "docs",
"section": "Docs",
"hidden": false
},
{
"type": "style",
"section": "Styling",
"hidden": false
},
{
"type": "refactor",
"section": "Code Refactoring",
"hidden": false
},
{
"type": "perf",
"section": "Performance Improvements",
"hidden": false
},
{
"type": "test",
"section": "Tests",
"hidden": false
},
{
"type": "build",
"section": "Build System",
"hidden": false
},
{
"type": "ci",
"section": "CI",
"hidden": false
}
]
}
1 change: 1 addition & 0 deletions commitlint.config.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = { extends: ['@commitlint/config-conventional'] };
Loading

0 comments on commit 99a2399

Please sign in to comment.