From 08a6ab6ccad45f9099f2739c2a314b62d8bbcf36 Mon Sep 17 00:00:00 2001 From: Prasanna Kumar Kalever Date: Wed, 21 Oct 2020 16:08:52 +0530 Subject: [PATCH] ci: disable scope-empty rule in commitlint we do not use scopes for commit messages Signed-off-by: Prasanna Kumar Kalever --- .commitlintrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.commitlintrc.yml b/.commitlintrc.yml index 08e87f9d8..72cceda97 100644 --- a/.commitlintrc.yml +++ b/.commitlintrc.yml @@ -14,7 +14,7 @@ rules: subject-empty: [2, never] # we do not use scopes for commit messages - scope-empty: [1, always] + scope-empty: [0, always] # Body shouldn't be empty body-min-length: [2, always, 1]