From f1680d63cc6926616bf32fa20d8cde38c07e5f10 Mon Sep 17 00:00:00 2001 From: Robin Louarn Date: Wed, 17 Jul 2024 20:20:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20Add=20or=20update=20documentatio?= =?UTF-8?q?n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1754f088cb..85ee87cac2 100644 --- a/README.md +++ b/README.md @@ -129,7 +129,7 @@ The cli has some built-in configuration options that you can tweak at your own p - **Automatic git add**: Enable or disable the automatic `git add .` every time you use the commit command. - **Emoji format**: Switch between the emoji format. - **Message prompt**: Enable or disable the message prompt. -- **Scope prompt**: Enable or disable [conventional commits scope prompt](https://www.conventionalcommits.org/en/v1.0.0/#summary). +- **Scope prompt**: Enable or disable the [conventional commits scope prompt](https://www.conventionalcommits.org/en/v1.0.0/#summary), or specify your own predefined scopes. - **Gitmojis api URL**: Set a custom URL to use it as the library of gitmojis. You can configure these options via (in order of precedence): @@ -147,7 +147,7 @@ If no user configuration is found, a set of default values will be used. "gitmoji": { "autoAdd": false, "emojiFormat": "code | emoji", - "scopePrompt": false, + "scopePrompt": false | ["feat", "fix", "ci", "build"], "messagePrompt": false, "capitalizeTitle": true, "gitmojisUrl": "https://gitmoji.dev/api/gitmojis" @@ -161,7 +161,7 @@ If no user configuration is found, a set of default values will be used. { "autoAdd": false, "emojiFormat": "code | emoji" , - "scopePrompt": false, + "scopePrompt": false | ["feat", "fix", "ci", "build"], "messagePrompt": false, "capitalizeTitle": true, "gitmojisUrl": "https://gitmoji.dev/api/gitmojis"