From 183aa381899bc11ec63ddb70fdaf79388527000c Mon Sep 17 00:00:00 2001 From: GordiNoki Date: Thu, 12 Dec 2024 20:03:00 +0300 Subject: [PATCH] fix(ci): Force scopes in commits to not be empty --- commitlint.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index dd34a6ba1..ee1799ffd 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -49,6 +49,7 @@ module.exports = { 'never', ['sentence-case', 'start-case', 'pascal-case', 'upper-case'] ], - 'body-max-line-length': [0, 'always', 0] + 'body-max-line-length': [0, 'always', 0], + 'scope-empty': [2, 'never'] } };