-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstardag.code-workspace
More file actions
114 lines (114 loc) · 2.66 KB
/
stardag.code-workspace
File metadata and controls
114 lines (114 loc) · 2.66 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
{
"folders": [
{
"path": ".",
"name": "repo-root"
},
{
"path": "lib/stardag",
"name": "lib/stardag",
"settings": {
"python.defaultInterpreterPath": "lib/stardag/.venv/bin/python"
}
},
{
"path": "lib/stardag-examples",
"name": "lib/stardag-examples",
"settings": {
"python.defaultInterpreterPath": "lib/stardag-examples/.venv/bin/python"
}
},
{
"path": "app/stardag-api",
"name": "app/stardag-api",
"settings": {
"python.defaultInterpreterPath": "app/stardag-api/.venv/bin/python"
}
},
{
"path": "app/stardag-ui",
"name": "app/stardag-ui"
},
{
"path": "integration-tests",
"name": "integration-tests",
"settings": {
"python.defaultInterpreterPath": "integration-tests/.venv/bin/python"
}
},
{
"path": "docs",
"name": "docs",
"settings": {
"python.defaultInterpreterPath": "docs/.venv/bin/python"
}
},
{
"path": "infra",
"name": "infra"
}
],
"settings": {
"editor.rulers": [88],
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit",
"source.organizeImports": "explicit"
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"notebook.formatOnSave.enabled": true,
"[json]": {
"editor.formatOnSave": false
},
"[markdown]": {
"editor.formatOnSave": false
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/.venv/**": true,
"**/__pycache__/**": true,
"**/.idea/**": true,
"**/.ruff_cache/**": true,
"**/.pytest_cache/**": true
},
"cSpell.words": [
"boto",
"botocore",
"fastapi",
"httpx",
"jsonable",
"Ortofoto",
"pydantic",
"rdbms",
"sqlalchemy"
],
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/__pycache__": false,
"**/.idea": false,
"**/.pytest_cache": false,
"**/.ruff_cache": false,
"**/.venv": false,
"**/.vscode": false,
"**/luigi.cfg": false,
"**/pyrightconfig.json": false,
"**/pytest.ini": false
},
"explorerExclude.backup": {},
"python.testing.pytestArgs": ["."],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.analysis.typeCheckingMode": "standard"
},
"extensions": {
"recommendations": ["charliermarsh.ruff"]
}
}