rd13_media_wiki/.vscode/settings.json
Conrad Schulz 2a72e08c13 chore: add GitHub Copilot AI config (instructions, prompts, vscode settings)
- 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
2026-05-30 10:55:16 +00:00

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"
}
}