Skip to content

Commit aecc1b5

Browse files
committed
chore(repo): downgrade subject-case commitlint rule to warning
Acronyms like 2FA, SSO, JWT in commit subjects trigger false positives with the strict case check.
1 parent 6b510af commit aecc1b5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

commitlint.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const Configuration = {
3131
'body-max-line-length': [1, 'always', '150'],
3232
'scope-empty': [2, 'never'],
3333
'scope-enum': [2, 'always', [...getPackageNames(), 'repo', 'release', 'e2e', '*', 'ci']],
34-
'subject-case': [2, 'always', ['camel-case', 'lower-case', 'sentence-case']],
34+
'subject-case': [1, 'always', ['camel-case', 'lower-case', 'sentence-case']],
3535
},
3636
};
3737

0 commit comments

Comments
 (0)