From 320aea039a91c8d12e44a3627e71725680802ce6 Mon Sep 17 00:00:00 2001 From: Hieu Date: Sun, 13 Feb 2022 10:03:27 +0700 Subject: [PATCH] ci: add some more commit prefixes --- commitlint.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commitlint.config.js b/commitlint.config.js index 285c34d445..91e40054f0 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,7 +1,7 @@ // module.exports = {extends: ['@commitlint/config-conventional']} module.exports = { rules: { - 'type-enum': [2, 'always', ['feat', 'refactor', 'style', 'fix', 'ci']], + 'type-enum': [2, 'always', ['chore', 'ci', 'docs', 'feat', 'fix', 'refactor', 'style', 'test']], 'body-leading-blank': [1, 'always'], 'body-max-line-length': [2, 'always', 100], 'footer-leading-blank': [1, 'always'],