-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc.code-workspace
59 lines (59 loc) · 1.37 KB
/
aoc.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
57
58
59
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true,
"editor.rulers": [120],
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/*.class": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"target": true
},
"files.watcherExclude": {
"**/.git/**": true,
"**/.DS_Store": true,
"**/*.class": true,
"**/*.pyc": true,
"**/__pycache__": true,
"**/*.egg-info": true,
"**/target/**": true
},
"python.terminal.activateEnvironment": true,
"python.languageServer": "Pylance",
"python.analysis.typeCheckingMode": "off",
"python.analysis.autoImportCompletions": true,
"python.analysis.indexing": true,
"[python]": {
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true
}
},
"extensions": {
"recommendations": [
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode-remote.remote-ssh",
"charliermarsh.ruff"
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "debugpy",
"request": "launch",
"program": "${workspaceFolder}/run_day.py",
"args": ["-vtf", "${file}"],
"console": "integratedTerminal"
}
]
}
}