-
Hello, i can generate custom message eg: #00000 fix(style): text Its possible? First is ID of issue... Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
Zhengqbbb
Feb 27, 2025
Replies: 2 comments
-
commitlint.config.cjs /** @type { import('cz-git').UserConfig } */
module.exports = {
prompt: {
defaultIssues: '#000000',
skipQuestions: ['footerPrefix'],
formatMessageCB: ({ defaultHeader, footer }) => {
return `${footer.trim()} ${defaultHeader}`
},
},
} How to define a result that can be changed by the user in the JS configuration file 🫡 Users can change questions and values, and none of them have specified answers. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
a-d-w-s
-
Thank You! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
commitlint.config.cjs
How to define a result that can be changed by the user in the JS configuration file 🫡 Users can change questions and values, and none of them have specified answers.
This is the charm of JavaScript's dynamic configuration—you …