microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
c5fcf0b3766ea51ef3e9e9317f1d596622255f70

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/settings.json

87lines · 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 "chat.instructionsFilesLocations": {
34 ".github/instructions/ado": true,
35 ".github/instructions/coding-standards": true,
36 ".github/instructions/design-thinking": true,
37 ".github/instructions/experimental": true,
38 ".github/instructions/github": true,
39 ".github/instructions/hve-core": true,
40 ".github/instructions/jira": true,
41 ".github/instructions/rai-planning": true,
42 ".github/instructions/security": true,
43 ".github/instructions/shared": true
44 },
45 "chat.agentFilesLocations": {
46 ".github/agents/ado": true,
47 ".github/agents/coding-standards": true,
48 ".github/agents/data-science": true,
49 ".github/agents/design-thinking": true,
50 ".github/agents/experimental": true,
51 ".github/agents/experimental/subagents": true,
52 ".github/agents/github": true,
53 ".github/agents/hve-core": true,
54 ".github/agents/hve-core/subagents": true,
55 ".github/agents/jira": true,
56 ".github/agents/project-planning": true,
57 ".github/agents/rai-planning": true,
58 ".github/agents/security": true,
59 ".github/agents/security/subagents": true
60 },
61 "chat.promptFilesLocations": {
62 ".github/prompts/ado": true,
63 ".github/prompts/coding-standards": true,
64 ".github/prompts/design-thinking": true,
65 ".github/prompts/experimental": true,
66 ".github/prompts/github": true,
67 ".github/prompts/hve-core": true,
68 ".github/prompts/jira": true,
69 ".github/prompts/rai-planning": true,
70 ".github/prompts/security": true
71 },
72 "chat.agentSkillsLocations": {
73 ".github/skills": true,
74 ".github/skills/coding-standards": true,
75 ".github/skills/experimental": true,
76 ".github/skills/github": true,
77 ".github/skills/gitlab": true,
78 ".github/skills/jira": true,
79 ".github/skills/security": true,
80 ".github/skills/shared": true
81 },
82 "github.copilot.chat.commitMessageGeneration.instructions": [
83 {
84 "file": ".github/instructions/hve-core/commit-message.instructions.md"
85 }
86 ],
87}
88