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