From 7f1719398d35a68327dda4707da90a6af8eecc9c Mon Sep 17 00:00:00 2001 From: renato-marciano Date: Fri, 28 Apr 2023 15:33:16 +0000 Subject: [PATCH] Added devcontainer --- .devcontainer/devcontainer.json | 16 ++++++++++++++++ .vscode/extensions.json | 5 +++++ 2 files changed, 21 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .vscode/extensions.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 00000000..28b5f41b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,16 @@ +{ + "image": "mcr.microsoft.com/devcontainers/universal:2", + "features": { + "ghcr.io/devcontainers/features/azure-cli:1": {}, + "ghcr.io/rchaganti/vsc-devcontainer-features/azurebicep:1": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "ms-azuretools.vscode-bicep", + "ms-python.python", + "ms-python.pylint" + ] + } + } +} \ No newline at end of file diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000..96dfcddf --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,5 @@ +{ + "recommendations": [ + "msazurermtools.azurerm-vscode-tools" + ] +} \ No newline at end of file