Introduces a detailed .github/copilot-instructions.md to guide AI agents on repository conventions, workflows, and validation rules. Updates .vscode/settings.json to enable and configure VS Code inline chat features for improved developer experience.
32 lines
722 B
JSON
32 lines
722 B
JSON
{
|
|
"chat.modeFilesLocations": {
|
|
"chatmodes": true
|
|
},
|
|
"chat.promptFilesLocations": {
|
|
"prompts": true
|
|
},
|
|
"chat.instructionsFilesLocations": {
|
|
"instructions": true
|
|
},
|
|
"files.eol": "\n",
|
|
"files.insertFinalNewline": true,
|
|
"files.trimTrailingWhitespace": true,
|
|
"[markdown]": {
|
|
"files.trimTrailingWhitespace": false,
|
|
"editor.formatOnSave": true
|
|
},
|
|
"editor.rulers": [
|
|
100
|
|
],
|
|
"files.associations": {
|
|
"*.chatmode.md": "markdown",
|
|
"*.instructions.md": "markdown",
|
|
"*.prompt.md": "markdown"
|
|
},
|
|
"inlineChat.enableV2": true,
|
|
"inlineChat.finishOnType": true,
|
|
"inlineChat.hideOnRequest": true,
|
|
"inlineChat.lineEmptyHint": true,
|
|
"inlineChat.notebookAgent": true
|
|
}
|