-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkmate.code-workspace
More file actions
118 lines (111 loc) · 3.27 KB
/
Copy pathworkmate.code-workspace
File metadata and controls
118 lines (111 loc) · 3.27 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
{
"folders": [
{ "name": "Backend (FastAPI)", "path": "backend" },
{ "name": "Frontend (Vue UI)", "path": "ui" },
{ "name": "Root", "path": "." }
],
"settings": {
// === 🌐 Globale Editor Settings ===
"workbench.colorTheme": "Catppuccin Frappé",
"editor.fontFamily": "JetBrains Mono, Fira Code, monospace",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.eol": "\n",
"files.exclude": {
"**/__pycache__": true,
"**/.venv": true,
"**/node_modules": true,
"**/dist": true
},
// === 🎨 Catppuccin Farbanpassung ===
"catppuccin.colorOverrides": {
"mocha": {
"editor.background": "#1e1e2e",
"editor.foreground": "#cdd6f4"
}
},
// === 🧩 Frontend (Vue 3 + Volar + ESLint + Prettier) ===
"typescript.tsdk": "ui/node_modules/typescript/lib",
"volar.useWorkspaceTsdk": true,
"volar.tsPlugin": true,
"volar.autoSwitchWorkspaceTsdk": true,
"vetur.ignoreProjectWarning": true,
"eslint.validate": ["javascript", "typescript", "vue"],
"eslint.format.enable": true,
"eslint.workingDirectories": [
{ "mode": "auto" },
{ "directory": "./ui", "changeProcessCWD": true }
],
"eslint.packageManager": "pnpm",
"prettier.requireConfig": true,
"prettier.singleQuote": true,
"prettier.semi": false,
"prettier.trailingComma": "es5",
"prettier.printWidth": 100,
// === 🐍 Backend (Python + FastAPI + Ruff) ===
"python.defaultInterpreterPath": "${workspaceFolder}/backend/.venv/bin/python",
"python.analysis.typeCheckingMode": "basic",
"python.analysis.autoImportCompletions": true,
"python.analysis.useLibraryCodeForTypes": true,
"python.analysis.exclude": ["ui/**"],
"python.linting.ignorePatterns": ["ui/**"],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"ruff.enable": true,
"ruff.importStrategy": "fromEnvironment",
"ruff.lint.args": ["--fix"],
// === 🖥️ Terminal ===
"terminal.integrated.defaultProfile.linux": "zsh"
},
// === 📦 Empfohlene Erweiterungen ===
"extensions": {
"recommendations": [
"Vue.volar",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"charliermarsh.ruff",
"ms-python.python",
"ms-python.black-formatter",
"ms-azuretools.vscode-docker"
]
},
// === 🧠 Makefile-Tasks ===
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "🐳 Start Docker Stack",
"type": "shell",
"command": "make up",
"problemMatcher": []
},
{
"label": "🛑 Stop Docker Stack",
"type": "shell",
"command": "make down",
"problemMatcher": []
},
{
"label": "🔧 Lint (Frontend + Backend)",
"type": "shell",
"command": "make lint",
"problemMatcher": []
},
{
"label": "🧹 Fix Lint (Frontend + Backend)",
"type": "shell",
"command": "make lint-fix",
"problemMatcher": []
},
{
"label": "🧠 Workmate Status",
"type": "shell",
"command": "make status",
"problemMatcher": []
}
]
}
}