-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkscli.code-workspace
More file actions
93 lines (93 loc) · 2.43 KB
/
kscli.code-workspace
File metadata and controls
93 lines (93 loc) · 2.43 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
{
"folders": [
{
"name": "KS-CLI",
"path": "./"
},
],
"settings": {
// File exclusions
"files.watcherExclude": {
"**/.venv": true,
"**/__pycache__": true,
"**/.coverage": true,
"**/*_cache/**": true,
"**/htmlcov": true,
"**/*.egg-info": true
},
"files.exclude": {
"**/.venv": true,
"**/__pycache__": true,
"**/.coverage": true,
"**/*_cache/**": true,
"**/htmlcov": true,
"**/*.egg-info": true
},
"search.exclude": {
"**/.venv": true,
"**/__pycache__": true,
"**/.coverage": true,
"**/*_cache/**": true,
"**/htmlcov": true,
"**/*.egg-info": true
},
// Python - Global
"python.languageServer": "None",
"python.terminal.activateEnvironment": true,
"python.testing.pytestEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.pytestArgs": [
"tests",
"-v",
"--capture=tee-sys",
"--tb=short",
"--no-cov"
],
"python.testing.cwd": "${workspaceFolder:Backend}",
// Editor
"editor.formatOnSave": true,
"editor.tabSize": 4,
"editor.rulers": [
88
],
// Python formatting
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports.ruff": "explicit",
"source.fixAll.ruff": "explicit"
}
},
// Ruff
"ruff.path": [
"uv",
"run",
"ruff"
],
"ruff.configurationPreference": "filesystemFirst",
"ruff.organizeImports": true,
"ruff.fixAll": true,
// Pyright - configure paths for backend source code
"cursorpyright.analysis.autoImportCompletions": true,
"cursorpyright.analysis.autoSearchPaths": true,
"cursorpyright.analysis.diagnosticMode": "workspace",
"cursorpyright.importStrategy": "useBundled",
"cursorpyright.analysis.extraPaths": [
"${workspaceFolder:Backend}/src",
"${workspaceFolder:Backend}/tests",
],
"cursorpyright.analysis.typeCheckingMode": "recommended",
"cursorpyright.analysis.useLibraryCodeForTypes": true,
"python.defaultInterpreterPath": "${workspaceFolder:Backend}/.venv/bin/python"
},
"extensions": {
"recommendations": [
"ms-python.python",
"charliermarsh.ruff",
"redhat.vscode-yaml",
"tamasfe.even-better-toml",
"bradlc.vscode-tailwindcss"
],
}
}