-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathnest.code-workspace
More file actions
100 lines (100 loc) · 2.93 KB
/
Copy pathnest.code-workspace
File metadata and controls
100 lines (100 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"folders": [
{
"path": "./deno",
"deno": true
},
{
"path": "./pc",
"deno": false
},
{
"path": "./uni",
"deno": false
},
{
"path": "./codegen",
"deno": false
}
],
"settings": {
"diffEditor.useInlineViewWhenSpaceIsLimited": false,
"git.blame.editorDecoration.template": "${subject}, ${authorName} (${authorDateAgo})",
"git.openRepositoryInParentFolders": "never",
"git.repositoryScanMaxDepth": 1,
"git.autoRepositoryDetection": false,
"git.autofetch": false,
"git.autorefresh": true,
"git.detectSubmodules": false,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"npm.registry": "https://registry.npmmirror.com",
"npm.updateStrategy": "LATEST",
"npm.autoDetect": "off",
"npm.fetchOnlinePackageInfo": false,
"deno.enable": true,
"deno.lint": true,
"unocss.root": [
"pc",
"uni"
],
"unocss.colorPreview": false,
"references.preferredLocation": "peek",
"rust-analyzer.inlayHints.parameterHints.enable": false,
"diffEditor.wordWrap": "off",
"editor.formatOnSave": false,
"editor.inlineSuggest.syntaxHighlightingEnabled": true,
"deno.codeLens.references": false,
"deno.codeLens.referencesAllFunctions": false,
"git.timeline.showUncommitted": true,
"scm.defaultViewMode": "tree",
"scm.diffDecorationsGutterPattern": {
"added": true
},
"scm.diffDecorationsIgnoreTrimWhitespace": "true",
"diffEditor.ignoreTrimWhitespace": true,
"explorer.copyRelativePathSeparator": "/",
"vue.autoInsert.dotValue": true,
"vue.inlayHints.destructuredProps": true,
"vue.inlayHints.inlineHandlerLeading": false,
"vue.inlayHints.missingProps": true,
"vue.codeActions.askNewComponentName": false,
"vue.editor.reactivityVisualization": false,
"vue.editor.templateInterpolationDecorators": false,
"vue.format.template.initialIndent": false,
"vue.format.wrapAttributes": "force",
"mcp": {
"servers": {
"utcp-codemode": {
"args": [
"-y",
"@utcp/code-mode-mcp@latest"
],
"env": {
"UTCP_CONFIG_FILE": "${workspaceFolder:codegen}/../.utcp_config.json"
},
"command": "npx",
"type": "stdio"
}
},
"inputs": []
},
"chat.useAgentSkills": true,
"chat.useAgentsMdFile": true,
"chat.useNestedAgentsMdFiles": true,
"chat.tools.terminal.autoApprove": {
"cargo check": true,
"Tee-Object": true,
"ForEach-Object": true,
"pnpm": true,
"Push-Location": true,
"npm run gqlgen": true,
"npx vue-tsc": true,
"npx eslint": true
},
"git.closeDiffOnOperation": true,
"git.alwaysShowStagedChangesResourceGroup": false,
"git.enableSmartCommit": true,
"diffEditor.experimental.showMoves": true,
"diffEditor.experimental.useTrueInlineView": true
}
}