diff --git a/commitlint.config.js b/commitlint.config.js index bbad100..e01a75f 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,8 +1,7 @@ module.exports = { extends: ['@commitlint/config-conventional'], - rules: { - 'body-max-line-length': [2, 'always', 300], - 'footer-max-line-length': [2, 'always', 300], - }, + ignores: [ + (commit) => commit.includes('Co-authored-by: Copilot Autofix powered by AI'), + ], };