From ea18315d086aefa9ec78b2a03dbd2177b24a1025 Mon Sep 17 00:00:00 2001 From: "Itai Y. Efrat" Date: Sat, 30 Oct 2021 17:38:06 +0300 Subject: [PATCH] dev(ci): allow periods in names in commit linter For initials. --- core/cli/ci.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/cli/ci.el b/core/cli/ci.el index 100f92c03..32bf4a983 100644 --- a/core/cli/ci.el +++ b/core/cli/ci.el @@ -48,7 +48,7 @@ Accapted value types can be one or more of ref, hash, url, username, or name.") '((ref . "^\\(https?://[^ ]+\\|[^/]+/[^/]+\\)?#[0-9]+$") (hash . "^\\(https?://[^ ]+\\|[^/]+/[^/]+@\\)?[a-z0-9]\\{12\\}$") (url . "^https?://") - (name . "^[a-zA-Z0-9-_ ]+<[^@]+@[^.]+\\.[^>]+>$") + (name . "^[a-zA-Z0-9-_ \\.]+<[^@]+@[^.]+\\.[^>]+>$") (username . "^@[^a-zA-Z0-9_-]+$")) "An alist of valid trailer keys and their accepted value types.