Add VSCode settings for Python and Ansible environment configuration

This commit is contained in:
2026-07-14 10:24:26 +02:00
parent 0e9d3781e9
commit ba45cfd9fe
+17
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"
}