-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
shinetingli
committed
Feb 16, 2023
1 parent
4a5f2e7
commit 0feb19b
Showing
2 changed files
with
47 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
module.exports = { | ||
types: [ | ||
{ | ||
value: `feat`, | ||
name : 'feat: 新功能' | ||
}, | ||
{ | ||
value: `fix`, | ||
name : 'fix: 修复bug' | ||
}, | ||
{ | ||
value: `docs`, | ||
name : 'docs: 文档注释更改' | ||
}, | ||
{ | ||
value: `refactor`, | ||
name : 'refactor: 重构(不修复bug和新增功能)' | ||
}, | ||
{ | ||
value: `style`, | ||
name : 'style: 修改样式问题,不影响功能' | ||
}, | ||
{ | ||
value: `perf`, | ||
name : 'perf: 性能优化' | ||
}, | ||
{ | ||
value: `test`, | ||
name : 'test: 增加测试用例或修正测试用例' | ||
}, | ||
{ | ||
value: `revert`, | ||
name : 'revert: 回退版本' | ||
} | ||
], | ||
skipQuestions: ['body', 'scopes', 'breaking', 'footer'] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters