From a88568658c73fbbabfa92a3370ee2df710ee60e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20L=C3=BCscher?= Date: Wed, 1 May 2024 16:24:38 +0000 Subject: [PATCH] fix(devcontainer): missing ansible extension configuration --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index ab4b69b..5b1ce4f 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -56,7 +56,8 @@ }, // Ansible configuration "ansible.validation.enabled": true, - "ansible.validation.lint.arguments": "-c .ansible-lint", + "ansible.validation.lint.arguments": "-c ansible/.ansible-lint", + "ansible.python.interpreterPath": "/usr/local/python/current/bin/python", "ansible.ansible.reuseTerminal": true, "ansible.lightspeed.enabled": true, "ansible.lightspeed.suggestions.enabled": true,