Last active
October 20, 2024 19:50
-
-
Save digitarald/e091aed3889eb5271d418b8bc07e0947 to your computer and use it in GitHub Desktop.
Personal Copilot Instructions for User Settings
This file contains 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
Show hidden characters
{ | |
"github.copilot.chat.experimental.codeGeneration.useInstructionFiles": true, | |
"github.copilot.chat.experimental.codeGeneration.instructions": [ | |
{ | |
"text": "Use concise one-liners when possible, but avoid sacrificing clarity for brevity." | |
}, | |
{ | |
"text": "Comment any generated code that has complex logic, especially around asynchronous operations or state management." | |
}, | |
{ | |
"text": "Always prefer interfaces over types for object shapes, unless it's a union or primitive.", | |
"language": "typescript" | |
}, | |
{ | |
// Optional planning details and todos for current task | |
"file": ".personal-notes.md" | |
} | |
], | |
// "github.copilot.chat.experimental.testGeneration.instructions": [] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment