We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Error for following message : Commit message: [CC-588] feat: haha
The text was updated successfully, but these errors were encountered:
That is a problem with how you have configured commitlint.
I used the following config in a previous project:
const types = require('conventional-commit-types').types; module.exports = { extends: ['@commitlint/config-conventional'], plugins: ['subject'], rules: { 'scope-empty': [2, 'always'], 'type-enum': [2, 'always', Object.keys(types)], 'subject-case': [0, 'always'], 'subject-regexp': [2, 'always', /^DAZ-\d+\s.*/], }, };
It assumes that you don't want a scope, and that your JIRA-prefix is "DAZ".
Sorry, something went wrong.
I am having the same issue when using type and/or scope. The issue is there is a space after the : https://github.com/digitalroute/cz-conventional-changelog-for-jira/blob/master/engine.js#L41-L44
type
scope
space
:
Can we add a new feature to make : configurable?
How would the commit message look like?
No branches or pull requests
Error for following message : Commit message: [CC-588] feat: haha
The text was updated successfully, but these errors were encountered: