-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproductivity-tools.code-workspace
40 lines (40 loc) · 1.15 KB
/
productivity-tools.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
{
"folders": [
{
"path": ".",
}
],
"settings": {
"editor.defaultFormatter": "ms-python.python",
// Start all terminals at the workspace root
"terminal.integrated.splitCwd": "workspaceRoot",
// Dock the toolbar at the bottom of the window
"debug.toolBarLocation": "docked",
// Use pretty colors
"editor.bracketPairColorization.enabled": true,
// Python-specific settings
"python.languageServer": "Pylance",
"python.analysis.diagnosticMode": "workspace",
"python.formatting.provider": "yapf",
"editor.formatOnSave": true,
"python.linting.enabled": true,
"python.analysis.typeCheckingMode": "basic",
"python.linting.pycodestyleEnabled": true,
"python.linting.pycodestyleCategorySeverity.W": "Information",
"python.linting.pycodestyleCategorySeverity.E": "Warning"
},
"launch": {
"configurations": [
{
"name": "Import time",
"type": "python",
"request": "launch",
"args": ["pull-and-import-one-day", "2023-07-07", "dmc-timer", "1"],
// "args": ["pull-and-import-one-day", "2023-05-01", "text-dump", "1"],
"program": "toggl_importer.py",
"console": "integratedTerminal"
}
],
"compounds": []
}
}