-
Notifications
You must be signed in to change notification settings - Fork 924
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
@commitlint/config-angular does not validate subject casing #114
Comments
|
We can take a first stab at this by adding echo "foo: Bar baz" | commitlint # throws
echo "foo: bar baz" | commitlint # pass
echo "foo: Bar Baz" | commitlint # pass
echo "foo: BAR BAZ" | commitlint # pass |
I agree! |
Actually it feels kind of strange, do you feel this is useful? Mainly because of example 3 and 4 passing. |
Nah, you are right - it is not. I am brewing up an |
Ok! Let me know if you need help. |
Release via 5.0.0 |
…tack chore: update stack
According to angular developer guide the first letter of the subject must not be capitalised. Though,
@commitlint/config-angular
allows it.I think this is an easy change by setting
subject-case
?The text was updated successfully, but these errors were encountered: