diff --git a/commitlint.config.js b/commitlint.config.js index b07b6cf342..054357ce85 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,6 +1,7 @@ module.exports = { extends: ['@commitlint/config-conventional'], rules: { + // 0-disable, 1-warn, 2-error 'subject-case': [0], // These are the standard values, but are listed here for easier reference 'type-enum': [ @@ -19,6 +20,11 @@ module.exports = { 'style', 'test' ] + ], + 'body-max-line-length': [ + 2, + 'always', + Infinity ] } };