-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpython-cardstack.code-workspace
More file actions
55 lines (55 loc) · 1.39 KB
/
python-cardstack.code-workspace
File metadata and controls
55 lines (55 loc) · 1.39 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
{
"folders": [
{
"path": "./packages/cardpay-reward-api"
},
{
"path": "./packages/cardpay-reward-indexer"
},
{
"path": "./packages/cardpay-reward-programs"
},
{
"path": "./packages/reward-root-submitter"
},
{
"path": "./packages/cardpay-subgraph-extraction"
},
{
"path": "./packages/cardpay-reward-scheduler"
},
{
"path": "./packages/python-did-resolver"
}
],
"settings": {
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true
}
},
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"python.formatting.provider": "black",
"python.sortImports.args": ["--profile", "black"],
"python.testing.pytestArgs": ["tests", "--ignore=${workspaceFolder}/__pypackages__/"],
"python.analysis.extraPaths": [
"${workspaceFolder}/__pypackages__/3.10/lib",
"${workspaceFolder}/__pypackages__/3.9/lib"
],
"python.autoComplete.extraPaths": [
"${workspaceFolder}/__pypackages__/3.10/lib",
"${workspaceFolder}/__pypackages__/3.9/lib"
],
"python.linting.flake8Enabled": true
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"bungcip.better-toml",
"knowsuchagency.pdm-task-provider"
]
}
}