mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-06-11 02:33:10 +08:00
14 lines
763 B
JSON
14 lines
763 B
JSON
{
|
|
"chat.promptFiles": true,
|
|
"github.copilot.chat.codeGeneration.instructions": [
|
|
{ "file": ".github/copilot-instructions.md" }
|
|
],
|
|
"github.copilot.chat.testGeneration.instructions": [
|
|
{ "file": ".github/copilot-instructions.md" },
|
|
{ "text": "Always write tests before implementation (TDD). Use Arrange-Act-Assert structure. Target 80%+ coverage. Write descriptive test names that explain the behavior under test, not just the function name." }
|
|
],
|
|
"github.copilot.chat.commitMessageGeneration.instructions": [
|
|
{ "text": "Use conventional commit format: <type>: <description>. Types: feat, fix, refactor, docs, test, chore, perf, ci. Keep the subject line under 72 characters. Focus on WHY the change was made, not WHAT changed." }
|
|
]
|
|
}
|