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
I should be able to type subject
When typing subject input is ignored
Probably minLength and maxLength validation is blocking user input
npx commit
chore
:skip
I can't compose commit message
commitlint --version
git --version
node --version
The text was updated successfully, but these errors were encountered:
@escapedcat this can be closed as for #2697
Sorry, something went wrong.
Thanks @armano2 , closing
No branches or pull requests
Expected Behavior
I should be able to type subject
Current Behavior
When typing subject input is ignored
Affected packages
Possible Solution
Probably minLength and maxLength validation is blocking user input
Steps to Reproduce (for bugs)
npx commit
chore
as type:skip
as scopev1 of commitlint.config.js
```js module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'scope-empty': [0, 'always'], 'scope-case': [2, 'always', ['lower-case', 'pascal-case']], 'subject-min-length': [2, 'always', 3], 'subject-max-length': [2, 'always', 100], }, }; ```v2 of commitlint.config.js
```js module.exports = { extends: ['@commitlint/config-conventional'], rules: { 'scope-empty': [0, 'always'], 'scope-case': [2, 'always', ['lower-case', 'pascal-case']], 'subject-max-length': [2, 'always', 100], }, }; ```Context
I can't compose commit message
Your Environment
commitlint --version
git --version
node --version
The text was updated successfully, but these errors were encountered: