From 5959e9c2e9fd43f7bde3f592d540c9d55065b823 Mon Sep 17 00:00:00 2001 From: Israel Fruchter Date: Wed, 8 Jan 2025 15:17:49 +0200 Subject: [PATCH] feature(commitlint.config.js): add `chore` to the context list --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index d9a76d0387..dc39803e98 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -8,7 +8,7 @@ module.exports = { 'subject-max-length': [2, 'always', 120], 'subject-min-length': [2, 'always', 10], // Type - 'type-enum': [2,'always',['ci','docs','feature','fix','improvement','perf','refactor','revert','style','test', 'unit-test', 'build']], + 'type-enum': [2,'always',['ci','docs','feature','fix','improvement','perf','refactor','revert','style','test', 'unit-test', 'build', 'chore']], 'type-empty': [2, 'never'], // Scope 'scope-empty': [2, 'never'],