Last active
April 8, 2025 14:00
-
-
Save webrgp/4952fe395a6c05a6eaffaad1ef2cf1ff to your computer and use it in GitHub Desktop.
VSCode Copilot Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"github.copilot.nextEditSuggestions.enabled": true, | |
"github.copilot.selectedCompletionModel": "claude-3.7-sonnet", | |
"github.copilot.chat.pullRequestDescriptionGeneration.instructions": [ | |
{ "text": "Prefix the title with the Jira ticket ID extracted from the branch name, formatted as `[ABC-123]`." }, | |
{ "text": "Always start by adding `### What's Changed` markdown header" }, | |
{ "text": "Use Github styled markdown formatting." }, | |
{ "text": "List changes, focusing on what changed and why. No space between list items." }, | |
{ "text": "Be concise and clear." }, | |
{ "text": "When referencing files, always reference full file and wrap it with single backticks." } | |
], | |
"github.copilot.chat.commitMessageGeneration.instructions": [ | |
{ "text": "The subject is a concise summary of the change, focusing on the file with the most changes." }, | |
{ "text": "When commit involves changes to YAML files, don't mention date/time changes in the commit." }, | |
], | |
"github.copilot.chat.agent.thinkingTool": true, | |
"github.copilot.chat.codesearch.enabled": true | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment