This commit is contained in:
Natan Keddem
2023-11-04 00:00:00 -04:00
commit 9a2c2c2273
37 changed files with 3512 additions and 0 deletions

33
snapper.code-workspace Normal file
View File

@@ -0,0 +1,33 @@
{
"folders": [
{
"path": "."
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: main.py",
"type": "python",
"request": "launch",
"program": "main.py",
"console": "integratedTerminal",
"justMyCode": true
},
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"justMyCode": false
}
]
},
"settings": {
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
}
}
}