From 82a91e9cecaf90307150724ebfe18e52a990fd20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Fri, 12 Jan 2018 09:31:14 +0100 Subject: [PATCH] build: disable commit linter's footer-max-length The setting controls the total length of the footer, not a maximum allowed line length :( --- commitlint.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 38abee8d8c5a..983bcfaba9e5 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -10,7 +10,6 @@ module.exports = { ], rules: { 'header-max-length': [2, 'always', 100], - 'footer-max-length': [2, 'always', 100], 'body-leading-blank': [2, 'always'], 'footer-leading-blank': [0, 'always'], }