microsoft/hve-core
Publicmirrored fromhttps://github.com/microsoft/hve-coreAvailable
.vscode/settings.json
33lines · modecode
| 1 | { |
| 2 | "editor.formatOnSave": true, |
| 3 | "editor.defaultFormatter": "yzhang.markdown-all-in-one", |
| 4 | "[markdown]": { |
| 5 | "editor.defaultFormatter": "davidanson.vscode-markdownlint" |
| 6 | }, |
| 7 | "markdown.mermaid.theme": "default", |
| 8 | "chat.instructionsFilesLocations": { |
| 9 | ".github/instructions/**/*.instructions.md": true, |
| 10 | ".github/prompts/**/*.prompt.md": true |
| 11 | }, |
| 12 | "chat.modeFilesLocations": { |
| 13 | ".github/agents": true |
| 14 | }, |
| 15 | "github.copilot.chat.commitMessageGeneration.instructions": [ |
| 16 | { |
| 17 | "file": ".github/instructions/commit-message.instructions.md" |
| 18 | } |
| 19 | ], |
| 20 | "yaml.schemas": { |
| 21 | "./scripts/linting/schemas/root-community-frontmatter.schema.json": [ |
| 22 | "README.md", |
| 23 | "CONTRIBUTING.md", |
| 24 | "CODE_OF_CONDUCT.md", |
| 25 | "SECURITY.md", |
| 26 | "SUPPORT.md", |
| 27 | "ANNOUNCEMENT.md" |
| 28 | ], |
| 29 | "./scripts/linting/schemas/docs-frontmatter.schema.json": [ |
| 30 | "docs/**/*.md" |
| 31 | ] |
| 32 | } |
| 33 | } |
| 34 | |