From 3cbcf9363074259582cd872917b4292382de73b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Wed, 4 Dec 2024 20:36:22 +0100 Subject: [PATCH 1/2] misc: Add devcontainer config --- .devcontainer/devcontainer.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000000..30c7d7885780 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,20 @@ +{ + "name": "Rust and TypeScript Dev Container", + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "features": { + "ghcr.io/devcontainers/features/rust:1.3.2": { + "version": "latest" + }, + "ghcr.io/lee-orr/rusty-dev-containers/cargo-nextest:0.1.8": {}, + "ghcr.io/lee-orr/rusty-dev-containers/cargo-deny:0.1.8": {}, + "ghcr.io/devcontainers-extra/features/typescript:2.0.15": {} + }, + "customizations": { + "vscode": { + "extensions": [ + "rust-lang.rust-analyzer", + "esbenp.prettier-vscode" + ] + } + } +} From 0280c344f7a664cbb122cb8f0da8773d2dd26e3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=96R=C3=96K=20Attila?= Date: Tue, 15 Apr 2025 13:28:50 +0200 Subject: [PATCH 2/2] misc: Add devcontainers ecosystem to Dependabot config --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c46afdc4d6a2..f177417fae1d 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -51,3 +51,11 @@ updates: labels: - "T-chore" - "A-deps" + + - package-ecosystem: "devcontainers + directory: "/" + schedule: + interval: "weekly" + labels: + - "T-chore" + - "A-deps"