FocusFriend is now called aw-focus enforces aw-commit.

This commit is contained in:
2021-11-26 21:21:41 -05:00
parent 5b6b7927b9
commit 488aee46ab
5 changed files with 41 additions and 74 deletions

32
aw-focus.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"]
}
}