Create config file and VS code workspace.

This commit is contained in:
2021-10-25 17:52:13 -04:00
parent bf491f5e19
commit ac37021424
4 changed files with 93 additions and 63 deletions

View File

@@ -0,0 +1,31 @@
{
"python.linting.pylintEnabled": false,
"python.linting.enabled": false,
"folders": [
{
"path": "."
}
],
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
{
"name": "FocusFriend Debug",
"type": "python",
"request": "launch",
"program": "focusfriend.py",
"console": "integratedTerminal",
"args": [
"--debug",
],
}
]
}
}