From 1dec58db4e58ee475a55761f748d2f48ab8623f3 Mon Sep 17 00:00:00 2001 From: Simon Ammer Date: Wed, 29 Mar 2023 14:52:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20ci:=20Update=20gitmoji=20subject?= =?UTF-8?q?-rule=20to=20disable=20lowercase?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- commitlint.config.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 18df5676..0fc34914 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1,6 @@ -module.exports = {extends: ['gitmoji']}; +module.exports = { + extends: ['gitmoji'], + rules: { + "subject-case": [2, "always", ["sentence-case", "start-case", "pascal-case"]] + } +};