Add VSCode configuration files for Python development

This commit is contained in:
William Valentin
2025-07-28 12:43:29 -07:00
parent 6cecb92596
commit e3622912dd
3 changed files with 30 additions and 1 deletions

17
.vscode/settings.json vendored Normal file
View File

@@ -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"
]
}