-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtz-fabric.code-workspace
More file actions
139 lines (139 loc) · 4.05 KB
/
tz-fabric.code-workspace
File metadata and controls
139 lines (139 loc) · 4.05 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"folders": [
{
"path": "."
}
],
"settings": {
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#ff339f",
"activityBar.background": "#ff339f",
"activityBar.foreground": "#e7e7e7",
"activityBar.inactiveForeground": "#e7e7e799",
"activityBarBadge.background": "#336000",
"activityBarBadge.foreground": "#e7e7e7",
"commandCenter.border": "#e7e7e799",
"sash.hoverBorder": "#ff339f",
"statusBar.background": "#ff0087",
"statusBar.foreground": "#e7e7e7",
"statusBarItem.hoverBackground": "#ff339f",
"statusBarItem.remoteBackground": "#ff0087",
"statusBarItem.remoteForeground": "#e7e7e7",
"titleBar.activeBackground": "#ff0087",
"titleBar.activeForeground": "#e7e7e7",
"titleBar.inactiveBackground": "#ff008799",
"titleBar.inactiveForeground": "#e7e7e799",
"sideBar.border": "#ff339f"
},
"peacock.color": "#FF0087",
"cSpell.words": [
"Exif",
"generativeai",
"gitstash",
"LANCZOS",
"langchain",
"langgraph",
"metadatas"
],
"files.autoSave": "onFocusChange",
"editor.dragAndDrop": false,
"editor.tabCompletion": "onlySnippets",
"editor.formatOnSaveMode": "file",
"files.eol": "\r\n",
"files.readonlyExclude": {
"dist/**": true
},
"window.title": "${rootNameShort}${separator}${activeEditorShort}${separator}${activeFolderMedium}",
"explorer.fileNesting.expand": false,
"search.exclude": {
".venv": true,
"**/poetry.lock": true,
"**/pyproject.toml": true,
"**/requirements.txt": true,
"dist/**": true,
"package-lock.json": true
},
"peacock.affectSideBarBorder": true,
"prettier.quoteProps": "consistent",
"prettier.documentSelectors": [
"**/*.astro"
],
"git.branchProtection": [
"develop",
"main"
],
"git.enableCommitSigning": false,
"git.postCommitCommand": "push",
"workbench.tree.enableStickyScroll": false,
"editor.stickyScroll.enabled": true,
"workbench.editor.pinnedTabSizing": "compact",
"prettier.trailingComma": "none",
"editor.inlayHints.enabled": "offUnlessPressed",
"workbench.layoutControl.enabled": false,
"[markdown]": {
"diffEditor.ignoreTrimWhitespace": true
},
"files.readonlyInclude": {
".githooks/**": true,
".venv/**": true
},
"workbench.editor.pinnedTabsOnSeparateRow": true,
"python.defaultInterpreterPath": "",
"python.terminal.activateEnvironment": false,
"python.analysis.importFormat": "absolute",
"python.analysis.extraPaths": [
"./src"
],
"files.exclude": {
".poetry/**": true,
"**/__pycache__": true,
"**/node_modules": true
},
"mcp": {
"inputs": [ ],
"servers": { }
},
"chat.mcp.serverSampling": {
"tz-script.code-workspace: my-mcp-server-c37295de": {
"allowedModels": [
"copilot/gpt-4.1",
"copilot/claude-3.5-sonnet"
]
}
},
"gitstash.explorer.display.fileSorting": "tree",
"folderStructure.ignorePatterns": [
"node_modules",
".*",
"__pycache__"
],
"[typescript]": {
"editor.defaultFormatter": "biomejs.biome"
},
"[typescriptreact]": {
"editor.defaultFormatter": "vscode.typescript-language-features"
},
"folder-color.pathColors": [
{
"folderPath": "tz-fabric/frontend/",
"color": "foldercolorizer.color_ff33cc"
},
{
"folderPath": "tz-fabric/backend/",
"color": "foldercolorizer.color_66cc66"
}
],
"cSpell.customDictionaries": {
"project-words": {
"name": "project-words",
"path": "${workspaceRoot}/.vscode/project-words.txt",
"description": "Words used in this project",
"addWords": true
},
"custom": true, // Enable the `custom` dictionary
"internal-terms": false // Disable the `internal-terms` dictionary
},
"explorer.excludeGitIgnore": false,
"git.branchPrefix": "feature/TZF-2600XX"
}
}