-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffee.code-workspace
56 lines (56 loc) · 1.28 KB
/
coffee.code-workspace
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
{
"folders": [
{
"path": "."
},
{
"name": "Prediction Server",
"path": "server"
}
],
"settings": {
"editor.formatOnSave": false,
"editor.rulers": [
120
],
"python.testing.pytestArgs": [
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true,
"cSpell.diagnosticLevel": "Hint",
"cSpell.words": [],
"files.trimFinalNewlines": true,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.analysis.autoImportCompletions": true,
"[python]": {
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true,
},
"editor.defaultFormatter": "charliermarsh.ruff"
},
"mypy-type-checker.args": [
"--cache-dir=/workspace/.vscode/.editor_mypy_cache"
],
"mypy-type-checker.path": [
"/workspace/.venv/bin/mypy"
],
"python.terminal.activateEnvironment": true,
"jupyter.notebookFileRoot": "${workspaceFolder}"
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-python.mypy-type-checker",
"ms-toolsai.jupyter",
"charliermarsh.ruff",
"eamodio.gitlens",
"streetsidesoftware.code-spell-checker",
"github.codespaces",
]
}
}