diff --git a/.gitignore b/.gitignore index 9ea7aac..0c42640 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,6 @@ __pycache__/ *.spec *.log logs/ -.vscode/ .venv/ .poetry/ .pytest_cache/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..b274063 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,17 @@ +{ + "ansible.python.interpreterPath": "/home/will/Code/thechart/.venv/bin/python", + "[python]": { + "editor.defaultFormatter": "charliermarsh.ruff", + "editor.formatOnSave": true + }, + "editor.formatOnSave": true, + "diffEditor.codeLens": true, + "github.copilot.nextEditSuggestions.enabled": true, + "github.copilot.selectedCompletionModel": "", + "ruff.nativeServer": "on", + "ruff.format.preview": false, + "python.experiments.enabled": false, + "ruff.interpreter": [ + "${workspaceFolder}/.venv/bin/python" + ] +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..590cecd --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,13 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Run TheChart App", + "type": "shell", + "command": "cd /home/will/Code/thechart && python -m src.main", + "group": "build", + "isBackground": false, + "problemMatcher": [] + } + ] +}