- Add .github/copilot-instructions.md with project-specific context - Add .github/prompts/ with 9 reusable agent prompt files - Add .vscode/extensions.json recommending copilot extensions - Update .vscode/settings.json with rulers and YAML schema - Remove tracked .DS_Store
11 lines
No EOL
330 B
JSON
11 lines
No EOL
330 B
JSON
{
|
|
// Repo-specific overrides only. Global Copilot settings are in User/settings.json (Settings Sync).
|
|
"search.useIgnoreFiles": false,
|
|
"editor.rulers": [
|
|
100
|
|
],
|
|
// YAML schema validation
|
|
"yaml.schemas": {
|
|
"https://json.schemastore.org/github-workflow.json": ".github/workflows/*.yml"
|
|
}
|
|
} |