Skip to content

Commit

Permalink
ci(commitlint): support longer commit messages from Dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisalley committed Oct 13, 2024
1 parent 89b62ee commit 8fdb2ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion commitlint.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
import type { UserConfig } from '@commitlint/types'

const Configuration: UserConfig = {
extends: ['@commitlint/config-conventional']
extends: ['@commitlint/config-conventional'],
rules: {
'body-max-line-length': [2, 'always', 1000] // Support longer commit messages from Dependabot
}
}

export default Configuration

0 comments on commit 8fdb2ba

Please sign in to comment.