Skip to content

Commit 69f2b96

Browse files
committed
chore: exclude Renovate commits from linting
* as we need to limit commit message lengths and have limited control over this in Renovate
1 parent d3e80f9 commit 69f2b96

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

commitlint.config.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@ module.exports = {
55
'footer-max-line-length': [2, 'always', 120],
66
'header-max-length': [2, 'always', 72],
77
},
8+
ignores: [
9+
(commit) => commit.startsWith("chore(deps):")
10+
],
811
};

0 commit comments

Comments
 (0)