From d47802133087e60d937268f87d5e3ca56472a4be Mon Sep 17 00:00:00 2001 From: Timo Glastra Date: Mon, 20 Apr 2020 13:59:36 +0200 Subject: [PATCH] chore: make max-header-length in commitlint a warning dependabot sometimes creates commit messages that violate this rule. nothing we can do about it at the moment. see #8 --- .commitlintrc.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.commitlintrc.json b/.commitlintrc.json index d3d7f0c..239c0e2 100644 --- a/.commitlintrc.json +++ b/.commitlintrc.json @@ -1 +1,6 @@ -{ "extends": ["@commitlint/config-conventional"] } +{ + "extends": ["@commitlint/config-conventional"], + "rules": { + "header-max-length": [1, "always", 72] + } +}