-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvoice2machine.code-workspace
More file actions
51 lines (49 loc) · 1.56 KB
/
voice2machine.code-workspace
File metadata and controls
51 lines (49 loc) · 1.56 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
{
"folders": [
{
"name": "prompts book",
"path": "../llm-book",
},
{
"name": "daemon backend",
"path": "apps/daemon/backend",
},
{
"name": "voice2machine",
"path": ".",
},
{
"name": "v2m-skills",
"path": "../v2m-skills",
},
{
"name": "cesarszv custom agents",
"path": "../custom-agents (cesarszv)",
},
{
"name": "zarvent custom agents",
"path": "../custom-agents (zarvent)",
},
],
"settings": {
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.expand": false,
// agrupaciones que usaremos con la funcionalidad fileNesting de VSCode
"explorer.fileNesting.patterns": {
"package.json": ".npmrc, .yarnrc, package-lock.json, pnpm-lock.yaml, bun.lockb",
"tsconfig.json": "tsconfig.*.json, jsconfig.*.json",
"vite.config.ts": "vitest.config.ts, vitest.setup.ts, postcss.config.js, tailwind.config.js, index.html, env.d.ts, eslint.config.js",
"pyproject.toml": "requirements*.txt, .python-version, .ruff.toml, ruff.toml, config.toml, uv.lock",
"*.tsx": "${capture}.ts, ${capture}.css, ${capture}.module.css, ${capture}.scss, ${capture}.test.tsx, ${capture}.spec.tsx",
".env": ".env.*",
"README.md": "LICENSE, .gitignore, .gitattributes, mkdocs.yml, CONTRIBUTING.md, CHANGELOG.md",
},
// ocultar estos archivos que la mayor parte del tiempo estorban
"files.exclude": {
"**/.pytest_cache": true,
"**/.ruff_cache": true,
"**/.venv": true,
"**/__pycache__": true,
},
},
}