Skip to content

Commit e217587

Browse files
authored
chore(commitlint): set body-max-line-length to 3000 (#5315)
1 parent b4c4a20 commit e217587

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,8 @@ jobs:
6262
with:
6363
fetch-depth: 0
6464
- uses: wagoid/commitlint-github-action@v5
65+
with:
66+
configFile: ./commitlint.config.mjs
6567

6668
pr-title-lint:
6769
name: Validate PR title

commitlint.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export default {
2+
extends: ['@commitlint/config-conventional'],
3+
rules: {
4+
'body-max-line-length': [2, 'always', 3000],
5+
},
6+
};

0 commit comments

Comments
 (0)