FocusFriend is now AntiDrift.

This commit is contained in:
2022-06-18 15:51:24 -04:00
parent 488aee46ab
commit 1d40434bf0
4 changed files with 2 additions and 11 deletions

32
antidrift.code-workspace Normal file
View File

@@ -0,0 +1,32 @@
{
"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"]
}
]
},
"settings": {
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintArgs": ["--errors-only"]
}
}