Skip to content

Commit

Permalink
chore: allow longer lines in commit messages
Browse files Browse the repository at this point in the history
  • Loading branch information
louib committed Sep 8, 2024
1 parent 04926ca commit 36eb2e5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions commitlint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
const Configuration = {
/*
* Resolve and load @commitlint/config-conventional from node_modules.
* Referenced packages must be installed
*/
extends: ['@commitlint/config-conventional'],

/*
* Custom URL to show upon failure
*/
helpUrl:
'https://github.com/conventional-changelog/commitlint/#what-is-commitlint',

rules: {
'body-line-max-length': 140,
},
};

export default Configuration;

0 comments on commit 36eb2e5

Please sign in to comment.