Skip to content

Commit af449ab

Browse files
committed
fix(ci): Allow commit messages to start with a capital
This relaxes the commit linter checks, otherwise this very commit would fail. Fixes: #2044
1 parent d568263 commit af449ab

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.commitlintrc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"extends": ["@commitlint/config-conventional"],
3+
"rules": {
4+
"subject-case": [
5+
2,
6+
"never",
7+
["upper-case", "pascal-case", "start-case"]
8+
]
9+
}
10+
}

0 commit comments

Comments
 (0)