From 20a3b0ab0e23ec03d89a615d9760018aac053085 Mon Sep 17 00:00:00 2001 From: Francesco Zimbolo Date: Thu, 23 Apr 2026 08:18:16 +0000 Subject: [PATCH] Reformat decontainer.json --- .devcontainer/devcontainer.json | 25 ++++++++++--------------- 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 05fde44..7250ddf 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,32 +4,27 @@ "name": "Python 3", // Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile "image": "mcr.microsoft.com/devcontainers/python:3-3.14-trixie", - // Features to add to the dev container. More info: https://containers.dev/features. "features": { "ghcr.io/devcontainers-extra/features/ansible": {}, "ghcr.io/hspaans/devcontainer-features/ansible-lint": {} }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], - // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "pip3 install --user -r requirements.txt", - // Configure tool-specific properties. "customizations": { - "vscode": { - "settings": { - "ansible.python.interpreterPath": "/usr/local/bin/python" - }, - "extensions": [ - "redhat.ansible", - "ms-python.python" - ] - } - } - + "vscode": { + "settings": { + "ansible.python.interpreterPath": "/usr/local/bin/python" + }, + "extensions": [ + "redhat.ansible", + "ms-python.python" + ] + } + } // Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. // "remoteUser": "root" }