awesome-copilot/.vscode/settings.json
ins dar f98ede0bd6 Add repo-specific Copilot instructions and VS Code inline chat settings
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.
2025-10-12 10:44:20 +02:00

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
}