Skip to content

Commit

Permalink
squash: allow sentence case
Browse files Browse the repository at this point in the history
  • Loading branch information
arielvalentin committed Jan 17, 2024
1 parent ebbc107 commit 989a3b3
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@
module.exports = {extends: ['@commitlint/config-conventional']};
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [
2,
'never',
[
'upper-case',
'pascal-case',
'start-case',
]
]
}
};

0 comments on commit 989a3b3

Please sign in to comment.