From 04978acf3f4340664ca3f819ab77871b5abeacbf Mon Sep 17 00:00:00 2001 From: Adam Talbot <12817534+adamrtalbot@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:58:03 +0100 Subject: [PATCH] Create devcontainer.json (#10) --- .devcontainer/devcontainer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .devcontainer/devcontainer.json diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..bf55f53 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,14 @@ +{ + "image": "docker.io/nfcore/gitpod:2.9", + "features": {}, + "customizations": { + "vscode": { + "extensions": [ + "nextflow.nextflow", + "esbenp.prettier-vscode", + "redhat.vscode-yaml", + "GitHub.vscode-pull-request-github" + ] + } + } +}