microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/subagent-model-selection

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/settings.json

91lines · modecode

1{
2 "editor.formatOnSave": true,
3 "files.insertFinalNewline": true,
4 "editor.defaultFormatter": "yzhang.markdown-all-in-one",
5 "[markdown]": {
6 "editor.defaultFormatter": "davidanson.vscode-markdownlint"
7 },
8 "search.followSymlinks": false,
9 "markdown.mermaid.theme": "default",
10 "yaml.schemas": {
11 "./scripts/linting/schemas/root-community-frontmatter.schema.json": [
12 "README.md",
13 "CONTRIBUTING.md",
14 "CODE_OF_CONDUCT.md",
15 "SECURITY.md",
16 "SUPPORT.md",
17 "ANNOUNCEMENT.md"
18 ],
19 "./scripts/linting/schemas/docs-frontmatter.schema.json": [
20 "docs/**/*.md"
21 ],
22 "./scripts/linting/schemas/adr-config.schema.json": [
23 "**/.adr-config.yml",
24 "**/.adr-config.yaml"
25 ]
26 },
27 "json.schemas": [
28 {
29 "fileMatch": [".copilot-tracking/rai-plans/*/state.json"],
30 "url": "./scripts/linting/schemas/rai-state.schema.json"
31 },
32 {
33 "fileMatch": [".copilot-tracking/accessibility/*/state.json"],
34 "url": "./scripts/linting/schemas/accessibility-state.schema.json"
35 }
36 ],
37 "chat.instructionsFilesLocations": {
38 ".github/instructions/ado": true,
39 ".github/instructions/coding-standards": true,
40 ".github/instructions/experimental": true,
41 ".github/instructions/github": true,
42 ".github/instructions/hve-core": true,
43 ".github/instructions/jira": true,
44 ".github/instructions/rai-planning": true,
45 ".github/instructions/security": true,
46 ".github/instructions/shared": true
47 },
48 "chat.agentFilesLocations": {
49 ".github/agents/ado": true,
50 ".github/agents/coding-standards": true,
51 ".github/agents/data-science": true,
52 ".github/agents/design-thinking": true,
53 ".github/agents/experimental": true,
54 ".github/agents/experimental/subagents": true,
55 ".github/agents/github": true,
56 ".github/agents/hve-core": true,
57 ".github/agents/hve-core/subagents": true,
58 ".github/agents/jira": true,
59 ".github/agents/project-planning": true,
60 ".github/agents/rai-planning": true,
61 ".github/agents/security": true,
62 ".github/agents/security/subagents": true
63 },
64 "chat.promptFilesLocations": {
65 ".github/prompts/ado": true,
66 ".github/prompts/coding-standards": true,
67 ".github/prompts/design-thinking": true,
68 ".github/prompts/experimental": true,
69 ".github/prompts/github": true,
70 ".github/prompts/hve-core": true,
71 ".github/prompts/jira": true,
72 ".github/prompts/rai-planning": true,
73 ".github/prompts/security": true
74 },
75 "chat.agentSkillsLocations": {
76 ".github/skills": true,
77 ".github/skills/coding-standards": true,
78 ".github/skills/design-thinking": true,
79 ".github/skills/experimental": true,
80 ".github/skills/github": true,
81 ".github/skills/gitlab": true,
82 ".github/skills/jira": true,
83 ".github/skills/security": true,
84 ".github/skills/shared": true
85 },
86 "github.copilot.chat.commitMessageGeneration.instructions": [
87 {
88 "file": ".github/instructions/hve-core/commit-message.instructions.md"
89 }
90 ],
91}
92