Skip to content

Commit c7e3955

Browse files
committed
chore: exclude coqbot commits from linting
1 parent a5a6962 commit c7e3955

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

commitlint.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ module.exports = {
66
'header-max-length': [2, 'always', 72],
77
},
88
ignores: [
9-
(commit) => commit.startsWith("chore(deps):")
9+
(commit) => commit.startsWith("chore(deps):"),
10+
(commit) => commit.startsWith("[CI merge]")
1011
],
1112
};

0 commit comments

Comments
 (0)