-
-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Documentation] Commitizen and questonary using different prompt names #205
Comments
Hello! Here's the list from questionary available prompts: https://github.com/tmbo/questionary/blob/master/questionary/prompts/__init__.py#L9
As you mention it would be worth documenting which ones we recommend, in case we have to migrate to something else, we will maintain the ones we have now. |
Hi, thanks for the response! I need some of the new feature for a commitizen template I'm working on atm, and a few of the features would be handy as well, such as skipping questions: cli/cli#297 (comment) Since you guys implement questionary, I assume that I could make use of the same 'questions' formatting, and therefore can include stuff like validators. Would you not recommend this on the chance that you would swap dependencies in the future? |
Even if we change dependencies, I would keep the same interface of questionary, so your package shouldn't have any problems in the future. |
With the help of the newer questionary additions, I've written an adjusted template. It uses the checkbox feature for specified scopes, as well as an extra field which grants issue closing autocomplete. To improve it, I have a few general questions, as it seems you've worked with both:
|
Hey sorry for the late reply.
|
Type
URL
https://commitizen-tools.github.io/commitizen/customization/
Description
I'm working on my own commitizen template, and the only used options in the pre-existing templates are "input", "list" and "confirm", and the two first differ from the questionary equivalents "text" and "select",
Therefore, as the documentation for questions reads
type - The type of questions. Valid type: list, input and etc. See More
, I don't know what type of input to use if I for example want to use questionary's "autocomplete" query.The text was updated successfully, but these errors were encountered: