From 5a3d1738a6a04d9bbc8b38e2d1fbbde447f0f8db Mon Sep 17 00:00:00 2001 From: Joris Roovers Date: Mon, 21 Nov 2022 11:15:04 +0000 Subject: [PATCH] gitlint: ignore dependabot Co-authored-by lines Dependabot tends to generate "Co-authored-by" lines that exceed the default 80 char limit. Ignore those lines in commit messages. --- .gitlint | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .gitlint diff --git a/.gitlint b/.gitlint new file mode 100644 index 00000000..9b38758b --- /dev/null +++ b/.gitlint @@ -0,0 +1,7 @@ +[general] +# See https://jorisroovers.com/gitlint/configuration/#regex-style-search +regex-style-search=True + +# Dependabot tends to generate "Co-authored-by" lines that exceed the default 80 char limit. Ignore those. +[ignore-body-lines] +regex=^Co-authored-by: dependabot