microsoft/hve-core

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
feat/886-python-lint-fix

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/settings.json

82lines · 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 },
23 "json.schemas": [
24 {
25 "fileMatch": [".copilot-tracking/rai-plans/*/state.json"],
26 "url": "./scripts/linting/schemas/rai-state.schema.json"
27 }
28 ],
29 "chat.instructionsFilesLocations": {
30 ".github/instructions/ado": true,
31 ".github/instructions/coding-standards": true,
32 ".github/instructions/design-thinking": true,
33 ".github/instructions/experimental": true,
34 ".github/instructions/github": true,
35 ".github/instructions/hve-core": true,
36 ".github/instructions/jira": true,
37 ".github/instructions/rai-planning": true,
38 ".github/instructions/security": true,
39 ".github/instructions/shared": true
40 },
41 "chat.agentFilesLocations": {
42 ".github/agents/ado": true,
43 ".github/agents/coding-standards": true,
44 ".github/agents/data-science": true,
45 ".github/agents/design-thinking": true,
46 ".github/agents/experimental": true,
47 ".github/agents/experimental/subagents": true,
48 ".github/agents/github": true,
49 ".github/agents/hve-core": true,
50 ".github/agents/hve-core/subagents": true,
51 ".github/agents/jira": true,
52 ".github/agents/project-planning": true,
53 ".github/agents/rai-planning": true,
54 ".github/agents/security": true,
55 ".github/agents/security/subagents": true
56 },
57 "chat.promptFilesLocations": {
58 ".github/prompts/ado": true,
59 ".github/prompts/coding-standards": true,
60 ".github/prompts/design-thinking": true,
61 ".github/prompts/experimental": true,
62 ".github/prompts/github": true,
63 ".github/prompts/hve-core": true,
64 ".github/prompts/jira": true,
65 ".github/prompts/rai-planning": true,
66 ".github/prompts/security": true
67 },
68 "chat.agentSkillsLocations": {
69 ".github/skills": true,
70 ".github/skills/shared": true,
71 ".github/skills/coding-standards": true,
72 ".github/skills/experimental": true,
73 ".github/skills/security": true,
74 ".github/skills/jira": true,
75 ".github/skills/gitlab": true
76 },
77 "github.copilot.chat.commitMessageGeneration.instructions": [
78 {
79 "file": ".github/instructions/hve-core/commit-message.instructions.md"
80 }
81 ],
82}
83