Add VSCode settings for Python and Ansible environment configuration

This commit is contained in:
2026-03-27 16:57:07 +01:00
parent bb45a79f36
commit 43be0cb5f9

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

@@ -0,0 +1,17 @@
{
"python-envs.pythonProjects": [
{
"path": ".",
"envManager": "ms-python.python:venv",
"packageManager": "ms-python.python:pip"
}
],
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
"python.pythonPath": "${workspaceFolder}/.venv/bin/python",
"ansible.ansiblePath": "${workspaceFolder}/.venv/bin/ansible",
"ansible.ansibleLintPath": "${workspaceFolder}/.venv/bin/ansible-lint",
"ansible.ansible.path": "${workspaceFolder}/.venv/bin/ansible",
"ansible.python.interpreterPath": "${workspaceFolder}/.venv/bin/python3",
"ansible.validation.lint.path": "${workspaceFolder}/.venv/bin/ansible-lint",
"ansible.ansibleNavigator.path": "${workspaceFolder}/.venv/bin/ansible-navigator"
}