From 76ec9631eff803a40e309dd97d26b9efdf26ca46 Mon Sep 17 00:00:00 2001 From: Joachim Van Herwegen Date: Tue, 10 May 2022 09:59:46 +0200 Subject: [PATCH] chore: Update commit linting --- commitlint.config.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 422b19445..fa41fd250 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1 +1,10 @@ -module.exports = { extends: ['@commitlint/config-conventional'] }; +module.exports = { + extends: ['@commitlint/config-conventional'], + rules: { + 'subject-case': [ + 2, + 'never', + ['start-case', 'kebab-case', 'snake-case'], + ], + } +};