microsoft/hve-core

Public

mirrored fromhttps://github.com/microsoft/hve-coreAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/claude-support

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.vscode/settings.json

50lines · 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 "yaml.schemas": {
9 "./scripts/linting/schemas/root-community-frontmatter.schema.json": [
10 "README.md",
11 "CONTRIBUTING.md",
12 "CODE_OF_CONDUCT.md",
13 "SECURITY.md",
14 "SUPPORT.md",
15 "ANNOUNCEMENT.md"
16 ],
17 "./scripts/linting/schemas/docs-frontmatter.schema.json": [
18 "docs/**/*.md"
19 ]
20 },
21
22 // Copilot prompt, agent, instructions, and skills locations.
23 // Note: Removing .claude/* from the lists to avoid collision with claude supported files.
24 "chat.useClaudeMdFile": false,
25 "chat.agentSkillsLocations": {
26 ".claude/skills": false,
27
28 ".github/skills": true,
29 ".agents/skills": true,
30 "~/.copilot/skills": true,
31 "~/.agents/skills": true,
32 },
33 "chat.instructionsFilesLocations": {
34 ".claude/rules": false,
35
36 ".github/instructions/**/*.instructions.md": true,
37 ".github/prompts/**/*.prompt.md": true,
38 ".github/instructions": true,
39 },
40 "chat.agentFilesLocations": {
41 ".claude/agents": false,
42
43 ".github/agents": true,
44 },
45 "github.copilot.chat.commitMessageGeneration.instructions": [
46 {
47 "file": ".github/instructions/commit-message.instructions.md"
48 }
49 ],
50}
51