From 7940ce654035ec51ee6d2342d6f29d2c2d8e822e Mon Sep 17 00:00:00 2001 From: JooYoung Seo Date: Fri, 20 Dec 2024 21:05:41 -0600 Subject: [PATCH] chore: add instructions for conventional commit message format in VSCode settings --- .vscode/settings.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index e236755..a8bdabf 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -58,12 +58,15 @@ "git.enableSmartCommit": true, "git.smartCommitChanges": "all", "git.postCommitCommand": "sync", - "conventionalCommits.scopes": [ - ".vscode" - ], + "conventionalCommits.scopes": [".vscode"], "github.copilot.chat.codeGeneration.instructions": [ { "file": ".vscode/copilot_instruction.md" } + ], + "github.copilot.chat.commitMessageGeneration.instructions": [ + { + "text": "Use conventional commit message format." + } ] }